POST类型提交时,怎么都提交不了,但是修改成GET就能正确。但是我提交的内容比较长,GET满足不了需求,求助!!!
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) {
}
})
管理都不管的嘛,发个帖子都不让发
类型参数设置了为什么没起作用?
按说设置了application/x-www-form-urlencoded就没问题,检查一下服务器端的配置吧
http://akka-li.iteye.com/blog/2305574
http://blog.csdn.net/g1248019684/article/details/50850384
String content = request.getParameter("content");
服务器端怎么接收参数的?
GET的时候,服务器上能正确接受到参数。改成POST的时候,参数值就是null。
提示什么?