将json格式的字符串转化成object对象

Author Avatar
Peipei Wong 5月 06, 2016
  • 在其它设备中阅读本文章

将一堆json数据的字符串,转换成js能认识的数据
例如:var response = "{"state":1,"msg":"yes","count":1}";
对其进行操作:response = eval('(' + response + ')'); 或者$.parseJSON(response)
这样在js中就可以访问response.state,response.msg,response.count