本文介绍了Uncaught SyntaxError:带有JSON.parse的意外标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在第三行导致此错误的原因是什么?
what causes this error on the third line?
var products = [{
"name": "Pizza",
"price": "10",
"quantity": "7"
}, {
"name": "Cerveja",
"price": "12",
"quantity": "5"
}, {
"name": "Hamburguer",
"price": "10",
"quantity": "2"
}, {
"name": "Fraldas",
"price": "6",
"quantity": "2"
}];
console.log(products);
var b = JSON.parse(products); //unexpected token o
推荐答案
产品
是一个对象。 (从对象文字创建)
products
is an object. (creating from an object literal)
JSON.parse()
用于转换字符串将JSON表示法包含到Javascript对象中。
JSON.parse()
is used to convert a string containing JSON notation into a Javascript object.
您的代码将对象转换为字符串(通过调用 .toString()
)以尝试将其解析为JSON文本。
默认 .toString()
返回 [object Object]
,这是无效的JSON;因此错误。
Your code turns the object into a string (by calling .toString()
) in order to try to parse it as JSON text.
The default .toString()
returns "[object Object]"
, which is not valid JSON; hence the error.
这篇关于Uncaught SyntaxError:带有JSON.parse的意外标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!