L'exemple de cet article décrit la méthode de traitement par jQuery des données json pour renvoyer un tableau et une sortie. Partagez-le avec tout le monde pour votre référence. La méthode de mise en œuvre spécifique est la suivante :
/*print the json object
*
*$("selector").print_r_json(json,opts) : return formatted string (and print)
*sprint_r_json : just return the string;
*print_r_json : return the formatted string and print json data
*contribute 明河
*
*auth iorichina
*
*example:
*3 ways to use it
*
*
*/
$.fn.print_r_json = function(json,options){
if(typeof(json)!="object") return false;
var opts = $.extend({},$.fn.print_r_json.defaults,options);
var data = '';
if(opts.if_print)
{
data = $.sprint_r_json(json)
$(this).html('
'+(opts.return_array?'Array':'JSON-DATA')+'
'+data);
}
if(opts.array)
{
return $.json_to_array(json);
}
return data;
};
$.fn.print_r_json.defaults =
{
if_print : false,//if print or just return formatted string
return_array : true //return an Array
};
$.extend({
print_r_json : function(json)
{
if(typeof(json)=="object")
{
var text='
{
';
document.write('
{
');
for(var p in json)
{
if(typeof(json[p])=="object")
{
document.write('
["'+p+'"] => ');
text+='
["'+p+'"] => '+$.print_r_json(json[p])+'
';
document.write('
');
}
else
{
text+='
['+((/^\d+$/).test(p)?p:('"'+p+'"'))+'] => "'+json[p]+'"
';
document.write('
['+p+'] => '+json[p]+'
');
}
}
text+='
}
';
document.write('
}
');
返回(文字);
}
其他
{
document.write(json);
返回(json);
}
},
sprint_r_json :函數(json)
{
if(typeof(json)=="對象")
{
var text = '
{
';
for(var p in json)
{
if(typeof(json[p])=="object")
{
text = '
["' p '"] =>; ' $.sprint_r_json(json[p]) '
';
}
其他
{
text = '
[' ((/^d $/).test(p)?p:('"' p '"')) '] =>; "'json[p]'"
';
}
}
text = '
}
';
返回(文字);
}
其他
{
返回(json);
}
},
json_to_array : 函數(json)
{
if(typeof(json)=="對象")
{
var text = new Array();
for(var p in json)
{
if(typeof(json[p])=="object")
{
文字[p] = $.json_to_array(json[p]);
}
其他
{
文字[p] = json[p];
}
}
返回(文字);
}
其他
{
返回(json);
}
}
});