我正在尝试从远程服务器(解析、firebase、亚马逊)获取 .json 文件。
function fetchData(remoteJsonId){
var url = "https://myAppName.parseapp.com/"+remoteJsonID+"?callback=JSON_CALLBACK";
console.log(url); //This variable expands to the full domain name which is valid and returns success both on wget and the browser
$http.jsonp(url).then(
function(resp){
},
function(err){
console.log(err.status) // This posts "404" on console.
}
);
}
但是,如果我在浏览器中打开 url,则会加载 json 文件。即使我 wget url json 文件也会加载。但通过角度它返回一个 404 未找到。$http
即使文件存在,为什么 angulars返回 404。有什么解决方案吗?