我正在使用外部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文件是否已损坏? 是因为我需要将它上传到服务器才能运行吗?