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) => {// 请求成功之后将数据给Infoif(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)})
登录后复制
this.a p i , t h i s . api,this.api,this.axios要在main.js当中注册为全局变量
Vue.prototype.$api='http://192.168.2.114:8099'Vue.prototype.$axios=axios
登录后复制
完整示例代码:
用户名:{{ Info }}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 = thisthis.$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)})}}}.span {width: 30px;}.username {border-radius: 10px;border: 2rpx solid #007aff;width: 80px;padding: 10px;}<!--用户名:
-->
登录后复制
相关免费学习推荐:uni-app开发教程
以上就是uniapp怎么发起请求的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3031955.html