parse-json

pws019發表於2018-05-18

包功能:解析json字串時同時提供更優雅的錯誤提示

const parseJson = require('parse-json');
const json = '{\n\t"foo": true,\n}';
 
 
JSON.parse(json);
/*
undefined:3
}
^
SyntaxError: Unexpected token }
*/
 
 
parseJson(json);
/*
JSONError: Trailing comma in object at 3:1
}
^
*/
 
 
parseJson(json, 'foo.json');
/*
JSONError: Trailing comma in object in foo.json:3:1
}
^
*/
 
 
// You can also add the filename at a later point
try {
    parseJson(json);
} catch (err) {
    err.fileName = 'foo.json';
    throw err;
}
/*
JSONError: Trailing comma in object in foo.json:3:1
}
^
*/
複製程式碼

api

parseJson(input, [reviver], [filename])
// 其中filename用來提示錯誤在哪個檔案
複製程式碼