1. 上传数据:
JSON.stringify
dataType: "json", traditional:true, data:{ sentDatas:JSON.stringify(sentDatas) },
2. 后台解析数据:
JSON.parse
JSON.parse(req.body.sentDatas);
1. 上传数据:
JSON.stringify
dataType: "json", traditional:true, data:{ sentDatas:JSON.stringify(sentDatas) },
2. 后台解析数据:
JSON.parse
JSON.parse(req.body.sentDatas);
转载于:https://www.cnblogs.com/lurending0417/p/7822052.html