JSON.parse嵌套JSON字符串属性解析
JSON.parse nested JSON string property parsing
我从 API 模块中得到以下字符串:
{"value":"{\"Id\":\"100\",\"OrganizationName\":\"[_+-:|;'.\\/] Arizona
Grower Automation\"}"}
当我在客户端使用 JSON.parse 时,我得到:
Uncaught SyntaxError: Unexpected token I in JSON at position 12
如果里面的引号被双重转义,这会起作用,但是最好的方法是什么?更具体地说,这是由离子电容器插件从本机代码返回到 JavaScript 环境。
您需要转义反斜杠和双引号:
/// NO!
JSON.parse('{"value":"{\"Id\":\"100\",\"OrganizationName\":\"[_+-:|;\'.\\/] Arizona Grower Automation\"}"}');
/// Syntax Error: Unexpected token I in JSON at position 12
/// YES!
JSON.parse('{"value":"{\\"Id\\":\\"100\\",\\"OrganizationName\\":\\"[_+-:|;\'.\\/] Arizona Grower Automation\\"}"}');
/// value: "{"Id":"100","OrganizationName":"[_+-:|;'./] Arizona Grower Automation"}"
我们需要三个反斜杠,因为前两个表示转义的单个反斜杠,第三个是双引号的转义字符。
我从 API 模块中得到以下字符串:
{"value":"{\"Id\":\"100\",\"OrganizationName\":\"[_+-:|;'.\\/] Arizona
Grower Automation\"}"}
当我在客户端使用 JSON.parse 时,我得到:
Uncaught SyntaxError: Unexpected token I in JSON at position 12
如果里面的引号被双重转义,这会起作用,但是最好的方法是什么?更具体地说,这是由离子电容器插件从本机代码返回到 JavaScript 环境。
您需要转义反斜杠和双引号:
/// NO!
JSON.parse('{"value":"{\"Id\":\"100\",\"OrganizationName\":\"[_+-:|;\'.\\/] Arizona Grower Automation\"}"}');
/// Syntax Error: Unexpected token I in JSON at position 12
/// YES!
JSON.parse('{"value":"{\\"Id\\":\\"100\\",\\"OrganizationName\\":\\"[_+-:|;\'.\\/] Arizona Grower Automation\\"}"}');
/// value: "{"Id":"100","OrganizationName":"[_+-:|;'./] Arizona Grower Automation"}"
我们需要三个反斜杠,因为前两个表示转义的单个反斜杠,第三个是双引号的转义字符。