使用JSON.stringify()方法时对象有一个循环引用导致的。 例如 let a = {}; let b = {a: a}; a.b = b; let c = JSON.stringify(a) // 该行报错