Heim >Web-Frontend >js-Tutorial >Die Methode von jQuery zur Verarbeitung von JSON-Daten, um ein Array und eine Ausgabe_jquery zurückzugeben

Die Methode von jQuery zur Verarbeitung von JSON-Daten, um ein Array und eine Ausgabe_jquery zurückzugeben

WBOY
WBOYOriginal
2016-05-16 16:10:121292Durchsuche

Das Beispiel in diesem Artikel beschreibt die Methode der jQuery-Verarbeitung von JSON-Daten, um ein Array und eine Ausgabe zurückzugeben. Teilen Sie es als Referenz mit allen. Die spezifische Implementierungsmethode lautet wie folgt:

Code kopieren Der Code lautet wie folgt:
/*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('
}
');
          retour (texte);
        >
        d'autre
        {
            document.write(json);
            retourner (json);
        >
    },
    sprint_r_json : fonction(json)
    {
        if(typeof(json)=="objet")
        {
          var text = '
{
';
          pour(var p en json)
          {
            if(typeof(json[p])=="objet")
            {
              text = '
["' p '"] => ' $.sprint_r_json(json[p]) '
';
            >
            d'autre
            {
              text = '
[' ((/^d $/).test(p)?p:('"' p '"')) '] => "' json[p] '"
';
            >
          } 
          text = '
}
';
          retour (texte);
        >
        d'autre
        {
            retourner (json);
        >
    },
    json_to_array : fonction(json)
    {
        if(typeof(json)=="objet")
        {
          var texte = nouveau tableau();
          pour(var p en json)
          {
            if(typeof(json[p])=="objet")
            {
              texte[p] = $.json_to_array(json[p]);
            >
            d'autre
            {
              texte[p] = json[p];
            >
          >
          retour (texte);
        >
        d'autre
        {
            retourner (json);
        >
    >
});

希望本文所述对大家的jQuery程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn