我试图访问我执行curl -i https://api.github.com/users/octocat > octocat.json
的API json文件到本地目录但是在尝试访问此文件时我得到404 Not Found。这是我链接到Index.html的JS文件中的脚本
$(document).ready(function(){
$.get('../apis/github/users/octocat.json', function (data){
console.log(data)
});
});
基本上我只想登录到我有信息的控制台,但我再次在Chrome中的Element Inspector控制台中找不到404。有什么建议吗?