小程序POST请求无效,访问不到服务器,怎么办?求助
POST类型提交时,怎么都提交不了,但是修改成GET就能正确。但是我提交的内容比较长,GET满足不了需求,求助!!!
var cookie = “xxxx”;
wx.request({
url: “xxx”,
data: {
content:“xxx”
},
method: “POST”,
header: {
“content-type”: “application/x-www-form-urlencoded”, //默认值
“cookie”: cookie
},
success: function (res) {
}
},
fial: function (res) {
}
})
7 回复