JS-JSON
Posted zjffun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS-JSON相关的知识,希望对你有一定的参考价值。
# JSON.stringify出现:Converting circular structure to JSON ``` // Note: cache should not be re-used by repeated calls to JSON.stringify. var cache = []; JSON.stringify(obj, function(key, value) { if (typeof value === ‘object‘ && value !== null) { if (cache.indexOf(value) !== -1) { // Circular reference found, discard key return; } // Store value in our collection cache.push(value); } return value; }); cache = null; // Enable garbage collection ```以上是关于JS-JSON的主要内容,如果未能解决你的问题,请参考以下文章