首页 > Web开发 > 详细

JS-JSON

时间:2019-01-02 00:23:58      阅读:169      评论:0      收藏:0      [点我收藏+]
# 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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!