wx.request({
url: 'http://xxx', // 仅为示例,并非真实的接口地址
method: 'post',
data: {
//所需要参数
//其中that.data.username是在wx.request请求外就写好的数据 that.data.password也一样
username: that.data.username,
password: that.data.password
},
//请求头 注:在get请求中可有可无,但post需要
header: {
'content-type': 'application/x-www-form-urlencoded' // 默认值
},
success(res) {
console.log(res.data)
}
})
————————————————
版权声明:本文为CSDN博主「不知名小朋友」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/m0_56685900/article/details/123102795