我安装了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"
},
//...
这是我在桌子上得到的结果:
我遵循了他们网站上的文档,并查看了一些其他有关堆栈溢出的帖子,但是他们给出的建议仍无法帮助我解决此问题。任何帮助将不胜感激。