$.param可以将json序列化为字符串,那么怎么把字符串反序列化为json?varv11=$.param({name:"CodePlayer",age:18});//"name=CodePlayer&age=18"怎么把"name=CodePlayer&age=18"反序列化为json
2 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
phpvarres={};varv11=$.param({name:"CodePlayer",age:18});v11.split('&').forEach(function(i){varj=i.split('=');res[j[0]]=j[1];});console.log(JSON.stringify(res));//'{"name":"CodePlayer","age":"18"}'
慕少森
TA贡献2019条经验 获得超9个赞
新浏览器默认自带,见楼下答案,老浏览器的话,。。。。。。轮子地址,包裹自取。https://github.com/douglascrockford/JSON-js
添加回答
举报
0/150
提交
取消