我正在研究将外部 json 文件中的数据动态地使用到我的 javascript 中。我一定误解了如何调用文件,因为目前我什至无法访问数据......所以我的 html 调用了 js 文件。并且 js 文件使用这种方法调用 json :
$(function() {
function stockTimeline(){
$.getJSON('json/corse_timeline/corse_timeline.json', function(donnees) {
$('#wrap').html('<p>' + donnees.timeline.date[4].endDate + '</p><p>' + donnees.timeline.date[9].startDate + '</p><p>' + donnees.timeline.headline + '</p><p>' + donnees.timeline.date[30].headline + '</p><p>');
console.log("this console.log IS NOT working");
});
console.log("this console.log IS working");
}
stockTimeline();
});
我已经从我读过的几个教程中采用了这种方法。如何测试我的 json 文件是否已损坏?是因为我需要将它上传到服务器上才能正常工作吗?