将字符串从JSON.stringify转换为数组
这个问题在这里已经有了答案:
JSON.parse是你的朋友,并回答:)
//examples:
JSON.parse('{}'); // {}
JSON.parse('true'); // true
JSON.parse('"foo"'); // "foo"
JSON.parse('[1, 5, "false"]'); // [1, 5, "false"]
JSON.parse('null'); // null
MDN JSON.Parse细节
链接地址: http://www.djcxy.com/p/8489.html