[摘要]微信小程序 http请求封装示例代码wx.request({url: test.php, //仅为示例,并非真实的接口地址data: {x: ,y: },method:POST,header: ...
微信小程序 http请求封装
示例代码
wx.request({
url: 'test.php', //仅为示例,并非真实的接口地址
data: {
x: '' ,
y: ''
},
method:'POST',
header: {
'content-type': 'application/json'
},
success: function(res) {
console.log(res.data)
},
fail: function( res ) {
fail( res );
}
})