我正在尝试使用dynatable从本地json文件显示数据,但是我在表中的值中未定义?

时间:2018-11-13 11:01:54

标签: jquery html dynatable

我安装了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"
 },
 //...

这是我在桌子上得到的结果:

And this is the result I'm getting on the table

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

0 个答案:

没有答案