我在 IIS 目录中托管了以下 jQuery:
$(function () {
$.ajax({
"url": "sample.json",
"type": "get",
"dataType": "json",
"success": function(data) {
console.log(data);
},
"error": function(jqXHR, status, error) {
console.log("status:",status, "error", error);
}
}) ;
});
当我浏览 html 文件时,我在 JS 控制台中得到了这个:
GET http://localhost/Ajax/sample.json 404 (Not Found) jquery-1.9.0.min.js:3
status: error error Not Found app.js:18
它就在目录中。当我使用 /sample.json 时,我得到:
GET http://localhost/sample.json 404 (Not Found) jquery-1.9.0.min.js:3
status: error error Not Found
如何让它找到本地文件并执行 ajax 调用?