前端页面object对象和json对象之间的转化

var jsonObj = JSON.parse(JSON.stringify(value));
//先把object转化为json数据,再把json数据转化为json对象

JSON.stringify(value)

//是把obj转json数据

JSON.parse()

//是把json数据转json对象,就可以直接用对象.属性获取值,或者对象[‘需要得到值的key’]获取值

上一篇:System.Text.Json.JsonException: A possible object cycle was detected. This can either be due to a cy


下一篇:第07章_单行函数