// 当要检查的对象在stackSet中已经存在时,这意味着存在循环引用
if (Object.prototype.hasOwnProperty.call(obj, key)) {
对象的属性指向同一个引用, 如未删除,则视为循环引用
// 在包含循环引用的对象上执行此方法将引发错误。
throw new TypeError('Converting circular structure to JSON')
// 在尝试转换BigInt类型的值时会抛出一个错误
if (typeof data === 'bigint') {
throw new TypeError('Do not know how to serialize a BigInt')
const commonKeys1 = ['undefined', 'function', 'symbol']
return Object.prototype.toString.call(s).replace(/\[object (.*?)\]/, '$1').toLowerCase()
if (type !== 'object' || data === null) {
// 数字Infinity和NaN,以及值null,都被认为是null。
if ([NaN, Infinity, null].includes(data)) {
// undefined、Function和Symbol不是有效的JSON值。
// 如果在转换过程中遇到任何这样的值,它们要么被省略(当在对象中找到时),要么被更改为null(当在数组中找到时).
// 当传入像JSON.stringify(function(){})或JSON.stringify(undefined)这样的“纯”值时,JSON.stringify()可以返回undefined。
} else if (commonKeys1.includes(type)) {
} else if (type === 'string') {
result = '"' + data + '"'
} else if (type === 'object') {
// 如果值具有toJSON()方法,则它负责定义将序列化的数据。
// Date的实例通过返回一个字符串(与Date . toisostring()相同)来实现toJSON()函数。
if (typeof data.toJSON === 'function') {
return jsonstringify(data.toJSON())
} else if (Array.isArray(data)) {
const result = data.map((it) => {
// 如果在转换过程中遇到任何这样的值,它们要么被省略(当在对象中找到时),要么被更改为null(当在数组中找到时)
return commonKeys1.includes(typeof it) ? 'null' : jsonstringify(it)
return `[${result}]`.replace(/'/g, '"')
// Boolean、Number和String对象在字符串化过程中按照传统的转换语义转换为相应的基元值。
if (['boolean', 'number'].includes(getType(data))) {
} else if (getType(data) === 'string') {
// 所有其他Object实例(包括Map、Set、WeakMap和WeakSet)将只序列化它们的可枚举属性。
Object.keys(data).forEach((key) => {
// 所有以符号为键的属性将被完全忽略,即使在使用替换函数时也是如此。
if (typeof key !== 'symbol') {
// undefined、Function和Symbol不是有效的JSON值。
if (!commonKeys1.includes(typeof value)) {
result.push(`"${key}":${jsonstringify(value)}`)
return `{${result}}`.replace(/'/, '"')