我想知道是否可以获取本地的 json 文件?如果是,如何?
我试过了
function test() {
$.getJSON("c\\file.json", function(json) {
console.log(json);
});
}
和
function test() {
$.getJSON("http://localhost/file.json", function(json) {
console.log(json);
});
}
我正在使用 wampserver。