尝试访问本地JSON文件,不断收到错误

时间:2015-02-07 21:22:35

标签: ajax json api

我试图访问我执行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。有什么建议吗?

0 个答案:

没有答案