赞
踩
在小程序中,get和post请求属于普通https网络请求,需要通过wx.request
而POST请求不同于GET的是要特别注意请求头以及参数该如何写
其中post请求最常见的用法就是提交表单,因此post请求所需的参数很重要,其中一个参数出错就会报错
以下就是我请求成功的模板!!!!
get:
wx.request({
url: 'http://xxx',
method: 'GET',
header: {
'Content-Type': 'application/json' // 默认值
},
success(res){
console.log(res.data)
}
})
post请求
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) } })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。