码迷,mamicode.com
首页 > Web开发 > 详细

JS-JSON

时间:2019-01-02 01:16:56      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:turn   discard   card   collect   index   dex   should   出现   car   

# 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

标签:turn   discard   card   collect   index   dex   should   出现   car   

原文地址:https://www.cnblogs.com/jffun-blog/p/10206558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!