JSON解析速度优化
let data = {
"first":{
"second":[1,2,3,4,5,6],
"second2":{
"third":'dasjldasd'
}
}
}let str = `
{
"first":{
"second":[${data.first.second.join(',')}],
"second2":{
"third":"${data.first.second2.third}"
}
}
}
`最后更新于