标签: javascript json
我想将[object Object],[object Object]打印成明智的"[[{ 'x': '1', 'y': '0' }, { 'x': '2', 'y': '1' }]]"; 如何在javascript中实现
[object Object],[object Object]
"[[{ 'x': '1', 'y': '0' }, { 'x': '2', 'y': '1' }]]";
答案 0 :(得分:4)
如果您想要JavaScript对象的字符串表示,请使用JSON.stringify()