我正在尝试从远程服务器(parse,firebase,amazon)获取.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未找到。为什么angulars $http
即使文件存在也会返回404。对此有何解决方案?