0

我正在为网格使用 jQuery dataTables ( http://www.datatables.net/ )。

但是,我的 json 格式与 dataTables 文档中包含的 json 示例不同。dataTables 是否可以解释我们 json 中的格式?

他们的json看起来像这样

 {"aaData": [
 [
  "Trident",
  "Internet Explorer 4.0",
  "Win 95+",
  "4",
  "X"
  ],
 [
  "Trident",
  "Internet Explorer 5.0",
  "Win 95+",
  "5",
  "C"
 ]  
 ]  
 }

我的 JSON 看起来像这样,不幸的是我无法将它更改为看起来像他们文档中包含的示例。

"allconfig": {
    "card.inserted": {
        "value": "Not Inserted",
        "type": "enum",
        "range": "",
        "clone": false,
        "archive": false,
        "access": "R"
    },
    "card.cisproc": {
        "value": "Processed",
        "type": "string",
        "range": "",
        "clone": false,
        "archive": false,
        "access": "R"
    }
    }
    }

这是我的 jQuery

  $(document).ready(function() {
  $('#example').dataTable( {
    "bProcessing": true,
    "sAjaxSource": 'json/test.json'
  });
   });
4

1 回答 1

1

您可以将 json 格式更改为所需的格式。

采用

  $.getJSON('json/test.json', function(data) {
  var newJson = [];
    var myJson = data ;
    $.each(myJson.allconfig, function (key, value) {
        var rowArray = [];
        rowArray.push(key);
        $.each(myJson.allconfig[key], function (key1, value1) {
            rowArray.push(value1);
        });
        newJson.push(rowArray);
    });
  $('#example').dataTable( { "bProcessing": true, "aaData":newJson  });
});

检查http://jsfiddle.net/JASdL/

于 2013-01-08T19:26:08.113 回答