uniapp이 요청을 시작하는 방법: 1. [uniapp.request({})] 방법을 사용합니다. 2. [this.$axios({})] 방법을 사용합니다. 코드는 [this.$axios입니다. ({method: 'get',url: this.$api+ '/Test].
본 튜토리얼의 운영 환경: windows7 시스템, uni-app2.5.1 버전, thinkpad t480 컴퓨터.
권장 (무료): uni -app development tutorial
uniapp이 요청을 시작하는 방법:
1 uniapp.request({})
방법을 사용하세요uniapp.request({})
方法
uni.request({ uni.request({ url: this.$api+'/Test/student/test', header: { 'content-type': 'application/x-www-form-urlencoded' //自定义请求头信息 }, //请求成功后返回 success: (res) => { // 请求成功之后将数据给Info if(res.statusCode===200) { self.Info = res.data; } } });
2、使用this.$axios({})
this.$axios({ method: 'get', url: this.$api + '/Test/student/test' // data: { // userName: 'Lan', // password: '123' // }, }) .then(function(res) { if (res.data.code === 1234) { self.Info = res.data } }) .catch(function(error) { console.log(error.statusCode) })
2. this.$axios({})
메소드를 사용하세요.
Vue.prototype.$api='http://192.168.2.114:8099' Vue.prototype.$axios=axios
用户名: <script> export default { data() { return { Info: '', username: '工程师', pwd: '' } }, methods: { getInfo() { // var self = this; // uni.request({ // url: this.$api+'/Test/student/test', // header: { // 'content-type': 'application/x-www-form-urlencoded' //自定义请求头信息 // }, // //请求成功后返回 // success: (res) => { // // 请求成功之后将数据给Info // if(res.statusCode===200) // { // self.Info = res.data; // } // } // }); var self = this this.$axios({ method: &#39;get&#39;, url: this.$api + &#39;/Test/student/test&#39; // data: { // userName: &#39;Lan&#39;, // password: &#39;123&#39; // }, }) .then(function(res) { if (res.data.code === 1234) { self.Info = res.data } }) .catch(function(error) { console.log(error.statusCode) }) } } } </script>{{ Info }}
전체 샘플 코드: 관련 무료 학습 권장 사항:프로그래밍 비디오🎜🎜🎜
위 내용은 uniapp은 어떻게 요청을 시작합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!