Home  >  Article  >  Web Front-end  >  Simple implementation case of converting js object to json array_javascript skills

Simple implementation case of converting js object to json array_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:58:011269browse
复制代码 代码如下:

function obj2Str(obj){
switch(typeof(obj)){
case 'object':
var ret = [];
if (obj instanceof Array){
for (var i = 0, len = obj.length; i < len; i ){
ret.push(obj2Str(obj[i]));
}
return '[' ret.join(',') ']';
}
else if (obj instanceof RegExp){
return obj.toString();
}
else{
for (var a in obj){
ret.push(a ':' obj2Str(obj[a]));
}
return '{' ret.join(',') '}';
}
case 'function':
return 'function() {}';
case 'number':
return obj.toString();
case 'string':
return """ obj.replace(/(\|")/g, "\$1").replace(/n|r|t/g, function(a) {return ("n"==a)?"\n":("r"==a)?"\r":("t"==a)?"\t":"";}) """;
case 'boolean':
return obj.toString();
default:
return obj.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