我需要使用返回 JSON 的服务。我对该服务(第三方)没有任何影响。
如果我做
JSON.parse (data)
我得到一个
SyntaxError: Unexpected token
我知道该服务有效,因为错误取决于输入参数。换句话说,有时它确实有效!HTTP 响应代码是 200,所以它不是某种访问错误,而且是可重复的。
我可以假设他们返回格式错误的 JSON 吗?将数据作为文本文件写入磁盘并像这样读取:
fs = 要求('fs')
fs.readFile 'output.json', '', (err, data) ->
if err?
console.log err
json = JSON.parse(data)
console.log json
返回
undefined:1
De L\'Embustier
^
SyntaxError: Unexpected token '
at Object.parse (native)
这有点奇怪,因为似乎字符串已正确转义,但仍未正确读取。
文件为300+k;没看到怎么贴。
编辑:来自 jsonlint.com 的回应
Parse error on line 1297:
... "Address": "36 Rue De L\'Embust
-----------------------^
Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '['
EDIT2:这是整个文件: http: //pastebin.com/ACUfvPCx