Use native JSON.stringify
method.
(使用本机JSON.stringify
方法。)
Works with nested objects and all major browsers support this method. (与嵌套对象一起使用,并且所有主流浏览器都支持此方法。)
str = JSON.stringify(obj);
str = JSON.stringify(obj, null, 4); // (Optional) beautiful indented output.
console.log(str); // Logs output to dev tools console.
alert(str); // Displays output using window.alert()
Link to Mozilla API Reference and other examples.
(链接到Mozilla API参考和其他示例。)
obj = JSON.parse(str); // Reverses above operation (Just in case if needed.)
Use a custom JSON.stringify replacer if you encounter this Javascript error
(如果遇到此Javascript错误,请使用自定义JSON.stringify替换程序)
"Uncaught TypeError: Converting circular structure to JSON"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…