您不是在解析字符串,而是在解析一个已经解析的对象:)
var obj1 = JSON.parse('{"creditBalance":0,...,"starStatus":false}');// ^ ^// if you want to parse, the input should be a stringvar obj2 = {"creditBalance":0,...,"starStatus":false};// or just use it directly.


