标签:request 网络 UNC post请求 小程序开发 ica class json code
wx.request({
url:"",
data:{},
header:{},
method:"GET/POST",
success:function (res) {
//返回的数据被封装在 res 对象的 data 属性中
console.log(res.data)
},
fail:function (res) {
}
})
注意不同的请求方式应用不同的请求头信息,默认 GET 方式,如果你 POST请求也是默认请求头,后台POST请求方法将无法获取data中的参数
GET 请求:
header:{‘content-type‘: ‘application/json‘}
POST 请求:
header:{‘content-type‘: "application/x-www-form-urlencoded"}
标签:request 网络 UNC post请求 小程序开发 ica class json code
原文地址:https://www.cnblogs.com/shiqi17/p/12308095.html