0

看起来很简单,但我无法弄清楚

var str="[{name:\"House\",id:\"1\"},{name:\"House and Land\",id:\"5\"},{name:\"Land\",id:\"6\"},{name:\"Terrace\",id:\"11\"}]";
JSON.parse(str.replace(/\s/g, "").replace(/\//g, ''));

我无法将上面的字符串(来自第 3 方网站)转换为有效的 json,以便我可以在我身边对其进行迭代

错误

VM5304:1 Uncaught SyntaxError: Unexpected token n in JSON at position 2
    at JSON.parse (<anonymous>)
4

1 回答 1

2

JSON 需要引用键。看来您的密钥未加引号。因此,添加另一个.replace语句以将引号重新插入:

.replace(/(\w+):/g, '"$1":');

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON

属性名称必须是双引号字符串;尾随逗号是禁止的。

完整的解决方案:

.replace(/(,|{)\s*(\w+)\s*:/g, '$1"$2":');
于 2017-11-23T23:21:40.467 回答