0

サーバーにカールして情報を取得するコマンドがあります

curl -v -H "Content-Type:application/json" -H "X-KGP-AUTH-TOKEN: a5a95c30274611e2ae10000c29bb7331" -H "X-KGP-APPID:id.kenhgiaiphap.kcloud" -H "X-KGP-APPVER:0.0.1" -H "X-KGP-DEVID:xxx" -H "X-KGP-DEVTYPE:xxx"  http://test.kenhgiaiphap.vn/kprice/account/profile/get/token

これを処理するためにajaxを書きます

 $.ajax({
            url: "http://test.kenhgiaiphap.vn/kprice/account/profile/get/token",
            type: "POST",
            cache: false,
            dataType: 'json',

            success: function() { alert('hello!'); },
            error: function(html) { alert(html); },
            beforeSend: setHeader
        });


        function setHeader(xhr) {
            xhr.setRequestHeader('X-KGP-AUTH-TOKEN','a5a95c30274611e2ae10000c29bb7331');
            xhr.setRequestHeader('X-KGP-APPVER', '0.0.1');
            xhr.setRequestHeader('X-KGP-DEVID', 'xxx');
            xhr.setRequestHeader('X-KGP-APPID','id.kenhgiaiphap.kcloud');
            xhr.setRequestHeader('X-KGP-DEVTYPE', 'xxx');
        }

しかし、私には問題があります

2XMLHttpRequest cannot load http://test.kenhgiaiphap.vn/kprice/account/profile/get/token. Origin http://localhost is not allowed by Access-Control-Allow-Origin.

そしてリクエストは

token

test.kenhgiaiphap.vn/kprice/account/profile/get OPTIONS (canceled) Load canceled text/plain jquery-1.7.2.min.js:2320 Script 156B 0B 1.15s 39ms 39ms1.11s

ご支援ありがとうございます!

4

2 に答える 2

1

これはブラウザの問題です。

dataTypeURLを変更jsonpまたは追加callback=?します。

http://test.kenhgiaiphap.vn/kprice/account/profile/get/token?callback=?

今後はhttps://stackoverflow.com/a/6396653/744255を参照してください

于 2012-11-06T02:47:07.003 に答える
1

クライアントサイト「Same Origin Policy issue」での投稿はご利用いただけません。

jsonp代わりに 'json' を使用して get に変更することもできます。ほとんど " Gabriel Santos " の提案に従います。

于 2012-11-06T02:57:14.250 に答える