Javascript serialization
Posted
by John
on Stack Overflow
See other posts from Stack Overflow
or by John
Published on 2010-05-06T15:03:15Z
Indexed on
2010/05/06
15:08 UTC
Read the original article
Hit count: 146
JavaScript
|serialization
Have I any chance to serialize meta (any format, so I can store it in DB)?
var obj1 = {};
var obj2 = {};
obj1.link = obj2;
obj2.link = obj1;
var meta = [obj1, obj2];
As I understand the problem is that JSON serialize object`s links to objects.
© Stack Overflow or respective owner