javascript - JSON to string variable dump -
is there quick function convert json objects received via jquery getjson
string variable dump (for tracing/debugging purposes)?
yes, json.stringify
, can found here, it's included in firefox 3.5.4 , above.
a json stringifier goes in opposite direction, converting javascript data structures json text. json not support cyclic data structures, careful not give cyclical structures json stringifier. https://web.archive.org/web/20100611210643/http://www.json.org/js.html
var myjsontext = json.stringify(myobject, replacer);
Comments
Post a Comment