gpt4 book ai didi

javascript - 错误 : Parse error on line 1: in json data

转载 作者:行者123 更新时间:2023-11-30 08:28:50 24 4
gpt4 key购买 nike

我在文件 mock.json 中有以下 json。我正在尝试通过 ajax 调用加载它,但出现此错误。

Error: Parse error on line 1:
{ id: 1, name: 'My na
--^
Expecting 'STRING', '}', got 'undefined'

我曾经使用 jsonlint 验证器来验证 json 并得到上述错误。我的 json 怎么了?

[{
id: 1,
name: 'My name',
email: 'name@email.com'
}]

最佳答案

JSON standard将属性描述为字符串,字符串需要双引号"

A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A character is represented as a single character string. A string is very much like a C or Java string.

因此您需要将属性和值作为 JSON 中的字符串用双引号引起来。

[{
"id": 1,
"name": "My name",
"email": "name@email.com"
}]

关于javascript - 错误 : Parse error on line 1: in json data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40949434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com