POST发送以下的数据:
{
经过测试.‘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: JSON.stringify([ { "describe":"测试" , "img":"2017-09-28/59cccd5e7ef567.52312577.jpg," } ])
},
dataType:"JSON"
});
试试?