1

我安装了 dynatable,我想从用 JSON 编写的数据创建表。我的表与脚本:

      <table id="university_Table">
        <thead>
          <th>University</th>
          <th>Link</th>
        </thead>
        <tbody>
        </tbody>
      </table>
    </div>
  </div>
</div>
$(document).ready(function() {
  var json_url = 'universities.json';
  $.getJSON(json_url, function(data) {
    $('#university_Table').dynatable({
      table: {
        defaultColumnIdStyle: 'lowercase'
      },
      dataset: {
        records: JSON.parse(JSON.stringify(data))
      }
    });
  });
});

我的 Json 文件如下所示:

[{
  web_page: "http://www.meu.edu.jo/",
  country: "Jordan",
  domain: "meu.edu.jo",
  name: "Middle East University"
},{
  web_page: "http://www.odtu.edu.tr/",
  country: "Turkey",
  domain: "odtu.edu.tr",
  name: "Middle East Technical University"
 },
 //...

这是我得到的结果:

这就是我得到的结果

我遵循了他们网站上的文档,并查看了有关堆栈溢出的其他一些帖子,但他们给出的建议无法帮助我解决这个问题。任何帮助,将不胜感激。

4

0 回答 0