JSON.parse(text[, reviver])
Posted 攻城狮的进阶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON.parse(text[, reviver])相关的知识,希望对你有一定的参考价值。
1. JSON.parse(text[, reviver])
text 必需 有效的json字符串
reviver 可选 函数
2. 举栗子
1) 只有第一个参数
let objStr = ‘{"name": "lqw","age": 23,"sex": "female"}‘;
console.log(JSON.parse(objStr));
结果:
{name: "lqw", age: 23, sex: "female"}
2)第二个参数存在
let objStr = ‘{"name": "lqw","age": 23,"sex": "female"}‘; console.log(JSON.parse(objStr, function (key, value) { if (typeof value === ‘string‘) { return value.toUpperCase(); } return value; })); 结果: {name: "LQW", age: 23, sex: "FEMALE"}
以上是关于JSON.parse(text[, reviver])的主要内容,如果未能解决你的问题,请参考以下文章