When programmers do TypeScript/JavaScript development on a daily basis, they often need to serialize complex JavaScript objects into JSON strings through JSON.stringify and save them locally for subsequent specific analysis. However, if the JavaScript object itself contains circular references, JSON.stringify does not work properly, with the error message:
The solution is to use the following code from this website to define a global cache array. Whenever the properties of the JavaScript object to be serialized are traversed, the value corresponding to the property is stored in the cache array. If you find that an attribute value already exists in the cache array during the traversal, it means that a circular reference has been detected. In this case, you can simply return to exit the loop. var cache = []; var str = JSON.stringify(o, function(key, value) { if (typeof value === 'object' && value !== null) { if (cache.indexOf(value) !== -1) { // remove return; } // Collect all values cache.push(value); } return value; }); cache = null; // Clear the variable to facilitate garbage collection Using this method, I successfully serialized a JavaScript object with a circular reference into a string. This concludes this article on how to solve the circular reference problem encountered when using JSON.stringify. For more information about JSON.stringify circular references, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed tutorial for installing mysql5.7.18 on centos7.3
>>: Linux kernel device driver character device driver notes
Table of contents Debounce Throttle Summarize Deb...
<br />Introduction: This idea came to me whe...
Table of contents Common array methods pop() unsh...
Preface This article uses the new features of MyS...
If you don’t understand what I wrote, there may b...
There are two types of dead link formats defined b...
Table of contents 1. Install Docker on CentOS 7.9...
I am writing a small program recently. Because th...
Preface We may have heard of the concept of rowid...
Table of contents 1. Project Description 1.1 Back...
Install Jenkins via Yum 1. Installation # yum sou...
Write a SQL first SELECT DISTINCT from_id FROM co...
Table of contents Preface Global parameter persis...
Recently, I need to query all the fields in a rel...
RULES can be used to control the style of the int...