Home  >  Article  >  Web Front-end  >  Convert Object to String function code in javascript (json str)_javascript skills

Convert Object to String function code in javascript (json str)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:54:001219browse
复制代码 代码如下:

function obj2str(o){
var r = [];
if(typeof o =="string") return """ o.replace(/(['"\])/g,"\$1").replace(/(n)/g,"\n").replace(/(r)/g,"\r").replace(/(t)/g,"\t") """;
if(typeof o == "object"){
if(!o.sort){
for(var i in o)
r.push(i ":" obj2str(o[i]));
if(!!document.all && !/^n?functions*toString()s*{n?s*[native code]n?s*}n?s*$/.test(o.toString)){
r.push("toString:" o.toString.toString());
}
r="{" r.join() "}"
}else{
for(var i =0;ir.push(obj2str(o[i]))
r="[" r.join() "]"
}
return r;
}
return o.toString();
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn