微信小程序 网络请求(post请求,get请求)
程序员文章站
2022-06-12 23:43:09
微信小程序 网络请求
1.post请求:
onload: function() {
that = this;
wx.request( {...
微信小程序 网络请求
1.post请求:
onload: function() { that = this; wx.request( { url: "url", header: { "content-type": "application/x-www-form-urlencoded" }, method: "post", data: {}, complete: function( res ) { console.log(res.data) }); if( res == null || res.data == null ) { console.error( '网络请求失败' ); return; } } }) },
2.get请求
onload: function () { console.log('onload') var that = this wx.request({ url: 'http://json.bmbstack.com/cinemalist', data: {}, method: 'get', // options, get, head, post, put, delete, trace, connect header: { 'accept': 'application/json' }, // 设置请求的 header success: function(res){ that.data.items= res.data }, fail: function() { // fail }, complete: function() { // complete } }) }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 沙拉酱的热量这么高,教你制作低卡沙拉汁
下一篇: 动态加载css方法实现和深入解析