JSON字符串转对象
文章描述:
json字符串转对象输出
json字符串
var json = '{"success":true,"message":"你好!","code":0,"result":null,"timestamp":1631772037005}';
转换
var jsonObj = JSON.parse(json);
打印
console.log(jsonObj.message);
结果:
你好!
发布时间:2021/09/17
文章描述:
json字符串转对象输出
json字符串
var json = '{"success":true,"message":"你好!","code":0,"result":null,"timestamp":1631772037005}';
转换
var jsonObj = JSON.parse(json);
打印
console.log(jsonObj.message);
结果:
你好!
发表评论