这是我在大学准备互动系统的一部分,而我现在真的陷入困境。我正在预订应用程序。
我的javascript应用程序存在此问题,因为它不想从我的计算机加载.json
文件,它只是提示我无法加载它。
我能做些什么吗?我做错了什么?
....
//Get reservations data from file
$.ajax({
type: "GET",
dataType: "json",
url: "d:\Proj\TMP\reservations.json",
success: function(reservations)
{
$currentReservations = reservations;
$.each(reservations, function(i, reservation)
....
先谢谢你们,我真的很感激。
答案 0 :(得分:0)
$。getJSON运行async
$.getJSON("test.json", function(json) {
console.log(json); // this will show the info it in firebug console
});