uniapp發起請求的方法:1、使用【uniapp.request({})】方法;2、使用【this.$axios({})】方法,代碼為【this.$axios({ method: 'get',url: this.$api '/Test】。
本教學操作環境:windows7系統、uni-app2.5.1版本、 thinkpad t480電腦。
建議(免費):uni-app開發教學
##uniapp發起請求的方法:
1、使用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) })
Vue.prototype.$api='http://192.168.2.114:8099' Vue.prototype.$axios=axios
完整範例程式碼:##
程式設計影片
以上是uniapp怎麼發起請求的詳細內容。更多資訊請關注PHP中文網其他相關文章!