无法解析键值名称周围带有单引号的字符串数组
Not able to parse Array of string with single quotes around key value names
我正在尝试将一个数组解析为 JSON.parse,它在键和值周围有单引号。
但它抛出以下错误。
Uncaught SyntaxError: Unexpected token ' in JSON at position 1
我传递的数组是:
["{'name': 'Jhon'}"]
不知何故,这个字符串没有抛出任何错误。
['{"name": "Jhon"}']
如有任何帮助,我们将不胜感激。提前致谢。
JSON 对象名称必须是符合 JSON 规范的字符串。 ECMA-404
要查看的字符串规范。
A string is a sequence of Unicode code points wrapped with quotation marks (U+0022).
要查看的对象规范。
An object structure is represented as a pair of curly bracket tokens surrounding zero or more name/value pairs. A name is a string.
这会使 {'name': 'Jhon'}
无效,因为它违反了字符串 'Jhon'
和名称 'name'
规范。使用双引号是有效的 JSON { "name": "John" }
我正在尝试将一个数组解析为 JSON.parse,它在键和值周围有单引号。 但它抛出以下错误。
Uncaught SyntaxError: Unexpected token ' in JSON at position 1
我传递的数组是:
["{'name': 'Jhon'}"]
不知何故,这个字符串没有抛出任何错误。
['{"name": "Jhon"}']
如有任何帮助,我们将不胜感激。提前致谢。
JSON 对象名称必须是符合 JSON 规范的字符串。 ECMA-404
要查看的字符串规范。
A string is a sequence of Unicode code points wrapped with quotation marks (U+0022).
要查看的对象规范。
An object structure is represented as a pair of curly bracket tokens surrounding zero or more name/value pairs. A name is a string.
这会使 {'name': 'Jhon'}
无效,因为它违反了字符串 'Jhon'
和名称 'name'
规范。使用双引号是有效的 JSON { "name": "John" }