ローカルにあるjsonファイルを取得できるかどうか知りたいですか? はいの場合、どのように?
私はもう試した
function test() {
$.getJSON("c\\file.json", function(json) {
console.log(json);
});
}
と
function test() {
$.getJSON("http://localhost/file.json", function(json) {
console.log(json);
});
}
私はワンプサーバーを使用しています。