问题
一个非标准的 JSON 字符串:
// test.json
["a",'b "',"c"]
使用 JSON.parse()
输出:
'use strict';
const fs = require('fs');
const content = fs.readFileSync('test.json', 'utf8');
console.log(JSON.parse(content)); // SyntaxError: Unexpected token ' in JSON at position 5
解决方法
'use strict';
const fs = require('fs');
const content = fs.readFileSync('test.json', 'utf8');
console.log(new Function(`return ${ content }`)()); // [ 'a', 'b "', 'c' ]
总结
封装一个易用函数
function jsonp(source) {
let jsonObj = null;
try {
jsonObj = JSON.parse(source);
} catch (e) {
//new Function 的方式,能自动给 key 补全双引号,但是不支持 bigint,所以是下下策
try {
jsonObj = new Function(`return ${ source }`)();
} catch (ee) {
try {
jsonObj = new Function(`return '${ source }'`)();
typeof jsonObj === 'string' && (jsonObj = new Function(`return ${ jsonObj }`)());
} catch (eee) {
console.error(eee.message);
}
}
}
return jsonObj;
}
必须 注册 为本站用户, 登录 后才可以发表评论!