const obj
= JSON.parse(jsonStr
)
const jsonStr
= JSON.stringify(obj
)
但是以上方法存在弊端,要求 jsonStr 是严格的 json 格式 解决:
const a
= '{\'a\': 1}';
console
.log(JSON.parse(a
));
console
.log(eval('(' + a
+ ')'));
console
.log((new Function('return ' + a
))());
转载请注明原文地址:https://tech.qufami.com/read-13174.html