dougou5844 2016-05-26 07:28
浏览 63
已采纳

带有JSON的DataTable数据集

I'm trying to use DataTable to show all fields of my JSON, but I'm not understand how to use it.

I just need how to populate dataset correctly to read data.

<script>
        <?php
            var jqxhr = $.ajax({url: api_ricerca_ingredienti, type: "GET",dataType: "json", data: {all: 1, ln : "it",completo:"-1",conteggio: 1}} )
              var max=json.items.length;
              for (i=0;i<max;i++){
                var el=json.items[i];
              }
              $(".risultato_ricerca").click(function() {
                carica_ingrediente($(this).attr('data-id'));
              });
            })
            <?php }?>

            var dataSet = [
              /*HOW?*/
            ];

            $(document).ready(function() {
              $('#example').DataTable( {
                data: dataSet,
                columns: [
                  { title: "Nome" },
                  { title: "Stato" },
                  { title: "Home" },
                  { title: "Utente" },
                  { title: "Mi piace" },
                  { title: "Contributi" }
                ]
              } );
            } );
            </script>
            <table id="example" class="table table-responsive table-hover table-dynamic filter-head"></table>

展开全部

  • 写回答

2条回答 默认 最新

  • dongmeng1875 2016-05-26 08:06
    关注

    First, two comments about your code. As @Patrick Q stated, your PHP tags are useless: you are writing Javascript, PHP is another things that has nothing to do with your code, so remove <?php and <?php }?>

    Then, i can't understand this code:

    for (i=0;i<max;i++){
       var el=json.items[i];
    }
    

    This for is completely useless. you cycle through every element in json.items without performing any operation. At the end you just store the last json.items in the el (without even using el in your code).

    By the way, your main question: As said in the official documentation, your dataSet must contain an array for every row of your table in the format:

    var dataSet = [
        ["john","italy","home","john",15,20],
        ["john","italy","home","john",15,20]
    ]
    

    This example will create two identical rows with random data inside.

    Assuming every item in your json has name country home user likes contribs fields you will need something like that:

    var dataSet = []; 
    for (i=0;i<json.items.length;i++){
         var el = [json.items[i].name,json.items[i].country, json.items[i].home, json.items[i].user, json.items[i].likes, json.items[i].contribs]
         dataSet[i] = el;
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部