gpt4 book ai didi

javascript - 解析错误的 JSON 并能够显示错误的位置

转载 作者:IT老高 更新时间:2023-10-28 23:24:03 25 4
gpt4 key购买 nike

这不是关于如何管理或更正错误的 JSON,而是关于如何向用户解释错误在错误 JSON 中的位置。

有没有办法找出解析器在 JSON 中的哪个位置失败。

我想在 node.js 应用程序中解决此问题,因此请尽可能将您的答案保留在该域中。

当我使用内置 JSON 对象和错误 JSON 的解析方法时,我只会收到异常消息 SyntaxError: Unexpected string。我想知道错误发生在哪里。

首选返回结果 ok/error 和错误位置的 JSON.validate(json)。像这样的:

var faultyJsonToParse = '{"string":"value", "boolean": true"}';
var result = JSON.validate(faultyJsonToParse);
if (result.ok == true) {
console.log('Good JSON, well done!');
} else {
console.log('The validator found a \'' + result.error + '\' of type \'' + result.errorType + '\' in your JSON near position ' + result.position);
}

以上想要的结果是:

The validator found a 'SyntaxError' of type 'Unexpected string' in your JSON near position 35.

最佳答案

试试 jsonLint :

var faultyJsonToParse = '{"string":"value", "boolean": true"}';

try {
jsonlint.parse(faultyJsonToParse)
} catch(e) {
document.write('<pre>' + e)
}

结果:

Error: Parse error on line 1:
...ue", "boolean": true"}
-----------------------^
Expecting 'EOF', '}', ',', ']', got 'undefined'

(虽然jsonLint是一个node项目,但也可以在web中使用:直接抓取https://github.com/zaach/jsonlint/blob/master/web/jsonlint.js)

正如@eh9 所建议的,围绕标准 json 解析器创建一个包装器以提供详细的异常信息是有意义的:

JSON._parse = JSON.parse
JSON.parse = function (json) {
try {
return JSON._parse(json)
} catch(e) {
jsonlint.parse(json)
}
}

JSON.parse(someJson) // either a valid object, or an meaningful exception

关于javascript - 解析错误的 JSON 并能够显示错误的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13323356/

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