JSON.parse() Unexpected token i in JSON at position 2 报错问题
Posted where there is a will, there i
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON.parse() Unexpected token i in JSON at position 2 报错问题相关的知识,希望对你有一定的参考价值。
JSON.parse(): Unexpected token i in JSON at position 2 报错问题
错误代码:
var res = "[{id:1,name:‘liming‘},{id:2,name:‘xiaobai‘}]";
var objRes = JSON.parse(res);
console.log(objRes)
正确代码:
var res = ‘[{"id":1,"name":"liming"},{"id":2,"name":"xiaobai"}]‘;
var objRes = JSON.parse(res);
console.log(objRes)
总结:
在使用JSON.parse的时候,返回来的数据一定是严格的json格式,key值一定要用 双引号 包起来,否则浏览器就会抛出异常。
另外,对于不标准的json字符串,如第一种示例,使用eval()虽然可以正常解析,但是从安全的角度来讲,一定要谨慎使用eval方法。规范json格式。
自我反省:
我在使用json.parse()确实碰到了这样报错的问题,我需要转义存储在本地的json,但是控制台一直出现这个报错,当时也尝试把key都加上了双引号,但是还是报错, 后来在后面加上了一个 JSON.parse(localStorage.getItem(‘xxx‘)) || [] 页面就没报错了,猜想可能是因为刚加载页面获取不到本地存的json值,JSON.parse()转不了才报错了。后面我要好好研究下 JSON.parse() 和 JSON.stringify() 两个函数,避免下次患同样的错误
以上是关于JSON.parse() Unexpected token i in JSON at position 2 报错问题的主要内容,如果未能解决你的问题,请参考以下文章
JSON.parse() Unexpected token i in JSON at position 2 报错问题
我在使用 JSON.parse 时收到“SyntaxError: Unexpected token ' in JSON at position 1”
SyntaxError: "JSON.parse: unexpected non-whitespace ..." 当从 PHP 返回 JSON
解析 json 错误:SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data
JSON.parse() Error SyntaxError: Unexpected token < in JSON at position 0