javascript 解析两层大括号
以下为脱敏后的数据:
this.out_ttt=JSON.stringify([{
"resp": true,
"code": 101,
"time": "2021-08-16 10:13:04",
"data": {
"uuid": "139003d16f7f4559897901372cf5a6a1",
"token": "1e8b41aa89b741afb837386a0de9e7b1",
"updatetime": "2021-08-16 10:13:04",
"endtime": "2021-08-17 10:13:04",
"lastvisit": "1970-01-01 08:00:00"
},
"chk": 11111
}]);
console.log(' methods中的方法 normal_decode中的 out_out ttt '+this.out_ttt);
this.out_rrr=JSON.stringify(this.out_ttt);/再次对字串进行序列化,数据会带上\"的转义符,但不影响转换 stc ok
console.log(' methods中的方法 normal_decode中的 JSON.stringify out_rrr '+this.out_rrr);
解析: