Detailed explanation of how to solve the circular reference problem encountered when using JSON.stringify

Detailed explanation of how to solve the circular reference problem encountered when using JSON.stringify

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:

VM415:1 Uncaught TypeError: Converting circular structure to JSON

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:
  • Summary of how JS operates on pages inside and outside Iframe
  • How to make if judgment in js as smooth as silk
  • Implementation of a simplified version of JSON.stringify and its six major features explained in detail
  • Summary of various uses of JSON.stringify
  • Vue implements online preview of PDF files (using pdf.js/iframe/embed)
  • Summary of JavaScript JSON.stringify() usage
  • The difference and use of json.stringify() and json.parse()
  • Selenium+BeautifulSoup+json gets the json data in the Script tag
  • About if contains comma expression in JavaScript

<<:  Detailed tutorial for installing mysql5.7.18 on centos7.3

>>:  Linux kernel device driver character device driver notes

Recommend

JavaScript anti-shake and throttling detailed explanation

Table of contents Debounce Throttle Summarize Deb...

Web design must have purpose, ideas, thoughts and persistence

<br />Introduction: This idea came to me whe...

Detailed explanation of common methods of JavaScript arrays

Table of contents Common array methods pop() unsh...

Simple usage example of MySQL 8.0 recursive query

Preface This article uses the new features of MyS...

MySQL 8.0.17 installation and simple configuration tutorial under macOS

If you don’t understand what I wrote, there may b...

How to create Baidu dead link file

There are two types of dead link formats defined b...

Example code for converting http to https using nginx

I am writing a small program recently. Because th...

Summary of the pitfalls of using primary keys and rowids in MySQL

Preface We may have heard of the concept of rowid...

Introduction to MySQL MHA operation status monitoring

Table of contents 1. Project Description 1.1 Back...

Detailed explanation of the installation process of Jenkins on CentOS 7

Install Jenkins via Yum 1. Installation # yum sou...

The difference and reasons between the MySQL query conditions not in and in

Write a SQL first SELECT DISTINCT from_id FROM co...

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

SQL function to merge a field together

Recently, I need to query all the fields in a rel...

HTML table tag tutorial (13): internal border style attributes RULES

RULES can be used to control the style of the int...