⼩程序:wx.request的参数为数组⼩程序端使⽤JSON.stringify()格式化数组
js.
var json_select_arr = JSON.stringify(select_arr); //先格式化数组
url: '..../confirm_order.html',
data: {
json_select_arr: json_select_arr,
},
header: {
"Content-Type": "application/x-www-form-urlencoded" //⽤于post
},
method: 'POST',
success: function (res) {};
})
php端使⽤json_decode将json格式转换为数组
//json格式数据
$data = '[{ "F_ModuleId": "1", "F_ParentId": "0", "F_EnCode": "SysManage",}]';
//转换成数组
js 二维数组$arr = json_decode($data,true);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论