POST发送以下的数据:
{
user_id:122,
need_data: [
};
{
"describe":"测试",
"img":"2017-09-28/59cccd5e7ef567.52312577.jpg,"
}
]
经过测试.'application/json',不生效, 只有'application/x-www-form-urlencoded'生效,
而后台只能收到
{
user_id:122,
need_data:[ Obejct Object ]
}
是我header不正确, 还是小程序POST根本不支持多级JSON 数据交互????
如果是我header不正确,那么请教下header如何设置, 后台才能完全收到???
网友回复:
@官方
来人啊
能不能把代码贴全一点。
@官方,你看下
wx.request({
url:config.c.BuywouldLike,
method:"POST",
header: {"content-type":"application/x-www-form-urlencoded"},
data:{
user_id:122,
need_data;[ { "describe":"测试" , "img":"2017-09-28/59cccd5e7ef567.52312577.jpg," } ]
},
dataType:"JSON"
});
发到后台后,need_data是字符串"[ Object Object ] "
wx.request({
url:config.c.BuywouldLike,
method:"POST",
header: {"content-type":"application/x-www-form-urlencoded"},
data:{
user_id:122,
need_data: JSON.stringify([ { "describe":"测试" , "img":"2017-09-28/59cccd5e7ef567.52312577.jpg," } ])
},
dataType:"JSON"
});
试试?
.'application/json',不生效
是因为你后台只接受 application/x-www-form-urlencoded 的把?
二级json一定要转字符串吗,那POST还有什么用.....
你查下 application/x-www-form-urlencoded 是什么意思。
你这种其实用 application/json 是最合适的
- application/x-www-form-urlencoded: 数据被编码成以 '&' 分隔的键-值对, 同时以 '=' 分隔键和值. 非字母或数字的字符会被 percent encoded:
application/json 在post下不生效啊,后台也没问题,
不过谢谢,我已经改了结构实现功能