我现在正在学习 json 并让我的壮举变得湿透,可以这么说,我想知道获取包含 json 信息的文件并用它填充网站的最佳方法是什么。该文件将是这样的:
window.test =
{
"header1":
[
{ "title": "title1", "author": "author1"},
{ "title": "title2", "author": "author2"},
{ "title": "title3", "author": "author3"}
],
"header2":
[
{ "title": "title1", "author": "author1"},
{ "title": "title1", "author": "author2"},
{ "title": "title1", "author": "author3"}
]
};
那么代码会是这样的吗?
$(function() {
$.getJSON('jsonFile.js',function(data){
$.each(data, function(){
console.log(header1.title);
console.log(header2.title);
});
});
});
同样,我是 JSON 的新手,所以任何教程、建议以及任何能帮助我理解核心概念的东西都会有所帮助。