0

リモート サーバー (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 not found が返されます。$httpファイルが存在するにもかかわらず、angulars が 404 を返すのはなぜですか。これに対する解決策はありますか?

4

0 に答える 0