85

我有一个包含循环引用的 JavaScript 对象定义:它有一个引用父对象的属性。

它还具有我不想传递给服务器的功能。我将如何序列化和反序列化这些对象?

我读过最好的方法是使用 Douglas Crockford 的 stringify。但是,我在 Chrome 中收到以下错误:

TypeError:将循环结构转换为 JSON

编码:

function finger(xid, xparent){
    this.id = xid;
    this.xparent;
    //other attributes
}

function arm(xid, xparent){
    this.id = xid;
    this.parent = xparent;
    this.fingers = [];

    //other attributes

    this.moveArm = function() {
        //moveArm function details - not included in this testcase
        alert("moveArm Executed");
    }
}

 function person(xid, xparent, xname){
    this.id = xid;
    this.parent = xparent;
    this.name = xname
    this.arms = []

    this.createArms = function () {
        this.arms[this.arms.length] = new arm(this.id, this);
    }
}

function group(xid, xparent){
    this.id = xid;
    this.parent = xparent;
    this.people = [];
    that = this;

    this.createPerson = function () {
        this.people[this.people.length] = new person(this.people.length, this, "someName");
        //other commands
    }

    this.saveGroup = function () {
        alert(JSON.stringify(that.people));
    }
}

这是我为这个问题创建的一个测试用例。这段代码中有错误,但本质上我在对象中有对象,并且传递给每个对象的引用以显示创建对象时父对象是什么。每个对象还包含我不希望字符串化的函数。我只想要诸如Person.Name.

假设将相同的 JSON 传回,我如何在发送到服务器之前进行序列化并对其进行反序列化?

4

6 回答 6

132

当你有一个对象的属性是对象本身直接(a -> a)或间接( )时,会发生循环结构a -> b -> a错误。

为避免出现错误消息,请告诉 JSON.stringify 在遇到循环引用时该怎么做。例如,如果您有一个人指向另一个人(“父母”),该人可能(或可能不)指向原始人,请执行以下操作:

JSON.stringify( that.person, function( key, value) {
  if( key == 'parent') { return value.id;}
  else {return value;}
})

to的第二个参数stringify是一个过滤函数。在这里,它只是将引用的对象转换为其 ID,但您可以自由地做任何您想做的事情来破坏循环引用。

您可以使用以下代码测试上述代码:

function Person( params) {
  this.id = params['id'];
  this.name = params['name']; 
  this.father = null;
  this.fingers = [];
  // etc.
}

var me = new Person({ id: 1, name: 'Luke'});
var him = new Person( { id:2, name: 'Darth Vader'});
me.father = him; 
JSON.stringify(me); // so far so good

him.father = me; // time travel assumed :-)
JSON.stringify(me); // "TypeError: Converting circular structure to JSON"
// But this should do the job:
JSON.stringify(me, function( key, value) {
  if(key == 'father') { 
    return value.id;
  } else {
    return value;
  };
});

顺便说一句,我会为“ parent”选择一个不同的属性名称,因为它是许多语言(和 DOM)中的保留字。这往往会导致混乱的道路......

于 2012-09-30T07:14:24.780 回答
10

看来dojo可以用以下形式表示 JSON 中的循环引用:{"id":"1","me":{"$ref":"1"}}

这是一个例子:

http://jsfiddle.net/dumeG/

require(["dojox/json/ref"], function(){
    var me = {
        name:"Kris",
        father:{name:"Bill"},
        mother:{name:"Karen"}
    };
    me.father.wife = me.mother;
    var jsonMe = dojox.json.ref.toJson(me); // serialize me
    alert(jsonMe);
});​

产生:

{
   "name":"Kris",
   "father":{
     "name":"Bill",
     "wife":{
          "name":"Karen"
      }
   },
   "mother":{
     "$ref":"#father.wife"
   }
}

注意:您也可以使用该dojox.json.ref.fromJson方法反序列化这些循环引用的对象。

其他资源:

即使有循环引用,如何将 DOM 节点序列化为 JSON?

JSON.stringify 不能表示循环引用

于 2012-05-01T03:07:03.357 回答
10

无库

使用下面的替换器生成带有字符串引用的 json(类似于json-path)以复制/循环引用的对象

let s = JSON.stringify(obj, refReplacer());

function refReplacer() {
  let m = new Map(), v= new Map(), init = null;

  return function(field, value) {
    let p= m.get(this) + (Array.isArray(this) ? `[${field}]` : '.' + field); 
    let isComplex= value===Object(value)
    
    if (isComplex) m.set(value, p);  
    
    let pp = v.get(value)||'';
    let path = p.replace(/undefined\.\.?/,'');
    let val = pp ? `#REF:${pp[0]=='[' ? '$':'$.'}${pp}` : value;
    
    !init ? (init=value) : (val===init ? val="#REF:$" : 0);
    if(!pp && isComplex) v.set(value, path);
   
    return val;
  }
}




// ---------------
// TEST
// ---------------

// gen obj with duplicate references
let a = { a1: 1, a2: 2 };
let b = { b1: 3, b2: "4" };
let obj = { o1: { o2:  a  }, b, a }; // duplicate reference
a.a3 = [1,2,b];                      // circular reference
b.b3 = a;                            // circular reference


let s = JSON.stringify(obj, refReplacer(), 4);

console.log(s);

并遵循解析器函数从这样的“ref-json”重新生成对象

function parseRefJSON(json) {
  let objToPath = new Map();
  let pathToObj = new Map();
  let o = JSON.parse(json);
  
  let traverse = (parent, field) => {
    let obj = parent;
    let path = '#REF:$';

    if (field !== undefined) {
      obj = parent[field];
      path = objToPath.get(parent) + (Array.isArray(parent) ? `[${field}]` : `${field?'.'+field:''}`);
    }

    objToPath.set(obj, path);
    pathToObj.set(path, obj);
    
    let ref = pathToObj.get(obj);
    if (ref) parent[field] = ref;

    for (let f in obj) if (obj === Object(obj)) traverse(obj, f);
  }
  
  traverse(o);
  return o;
}



// ------------
// TEST
// ------------

let s = `{
    "o1": {
        "o2": {
            "a1": 1,
            "a2": 2,
            "a3": [
                1,
                2,
                {
                    "b1": 3,
                    "b2": "4",
                    "b3": "#REF:$.o1.o2"
                }
            ]
        }
    },
    "b": "#REF:$.o1.o2.a3[2]",
    "a": "#REF:$.o1.o2"
}`;

console.log('Open Chrome console to see nested fields:');
let obj = parseRefJSON(s);

console.log(obj);

于 2020-05-12T10:48:53.553 回答
5

我找到了两个合适的模块来处理 JSON 中的循环引用。

  1. CircularJSON https://github.com/WebReflection/circular-json其输出可用作 .parse() 的输入。它也适用于浏览器和 Node.js 另请参阅:http ://webreflection.blogspot.com.au/2013/03/solving-cycles-recursions-and-circulars.html
  2. Isaacs json-stringify-safe https://github.com/isaacs/json-stringify-safe可能更具可读性但不能用于 .parse 并且仅适用于 Node.js

这些中的任何一个都应该满足您的需求。

于 2013-07-22T04:46:50.030 回答
4

发生在这个线程上是因为我需要将复杂的对象记录到页面上,因为在我的特定情况下无法进行远程调试。找到 Douglas Crockford(JSON 的 inceptor)自己的 cycle.js,它将循环引用注释为字符串,以便在解析后可以重新连接它们。去循环的深拷贝可以安全地通过 JSON.stringify。享受!

https://github.com/douglascrockford/JSON-js

cycle.js:这个文件包含两个函数,JSON.decycle 和 JSON.retrocycle,它们可以在 JSON 中编码循环结构和 dag,然后恢复它们。这是 ES5 不提供的功能。JSONPath 用于表示链接。

于 2017-03-30T20:20:53.277 回答
-13

我使用以下内容来消除循环引用:

JS.dropClasses = function(o) {

    for (var p in o) {
        if (o[p] instanceof jQuery || o[p] instanceof HTMLElement) {
            o[p] = null;
        }    
        else if (typeof o[p] == 'object' )
            JS.dropClasses(o[p]);
    }
};

JSON.stringify(JS.dropClasses(e));
于 2014-02-28T19:41:46.867 回答