gpt4 book ai didi

javascript - JSON.parse 意外 token

转载 作者:IT老高 更新时间:2023-10-28 12:47:26 25 4
gpt4 key购买 nike

为什么每当我这样做时:-

JSON.parse('"something"')

它解析得很好,但是当我这样做时:-

var m = "something";
JSON.parse(m);

它给了我一个错误说:-

Unexpected token s

最佳答案

您要求它解析 JSON 文本 something(而不是 "something")。这是无效的 JSON,字符串必须用双引号括起来。

如果您想要与第一个示例相同的内容:

var s = '"something"';
var result = JSON.parse(s);

关于javascript - JSON.parse 意外 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18791718/

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