0

私は、データベースからマーカーを読み取り、マップ上に配置する必要がある Web サイトを作成しています。ローカルで作業している場合は正常に動作しますが、php ファイルがオンラインであるため、別のドメイン (db からデータを要求する) を指すと、応答が得られず、JSON.parse: 予期しないデータの終わりがあります。別のWebサイトがすでにこのファイルを使用しているため、phpファイルの何も変更したくないことに注意してください。リクエストを呼び出して実行している関数を以下に示します...あなたの助けに感謝します。

function ajaxrequestDB() {
    var AJAX = null; // Initialize the AJAX variable.

    if (window.XMLHttpRequest) { // Does this browser have an XMLHttpRequest object?
        AJAX=new XMLHttpRequest(); // Yes -- initialize it.
    } 
    else { // No, try to initialize it IE style
        AJAX=new ActiveXObject("Microsoft.XMLHTTP"); // Wheee, ActiveX, how do we format c: again?
    } // End setup Ajax.

    if (AJAX==null){ // If we couldn't initialize Ajax...
    alert("Your browser doesn't support AJAX."); // Sorry msg.
    return false // Return false, couldn't set up ajax
    }
        AJAX.onreadystatechange = function() { // When the browser has the request info..
            if (AJAX.readyState==4 || AJAX.readyState=="complete") 
            { // see if the complete flag is set.

            //alert(AJAX.responseText);
        var result =JSON.parse(AJAX.responseText);
            //alert(AJAX.responseText);

    for (var i=0; i<result.length; i++) { 
         for (var j=0; j<gmarkers.length; j++) { 
               if (gmarkers[j].myname == result[i].name) {
                    gmarkers[j].setVisible(true);                                  
                    gcircle[j].bindTo('center', gmarkers[j], 'position');
                    gcircle[j].setVisible(true);  
                    var cat = gmarkers[j].mycategory;

                }

            }
    }           

            callback(AJAX.responseText, AJAX.status); // Pass the response to our processing function

        } // End Ajax readystate check.
        }

    //var url='http://localhost/refresh.php'; //this works !
    var url='http://anotherdomain.org/Scripts/refresh.php'; 
    AJAX.open("GET", url, true); // Open the url this object was set-up with.
    AJAX.send(); // Send the request.           

}
function callback(x, y) {
    // alert(x);
}
4

2 に答える 2

0

JSONP などのクロスドメイン技術を使用する必要があります。ブラウザは、異なるドメイン内のサーバーへのアクセスを許可しません。

于 2012-08-30T11:04:34.363 に答える
0

Ajax クエリは、同じオリジン ポリシーのため、従来は同じサーバーに送信する必要がありました。

追加することで、他のサイトからの接続を許可できます

<?php header("Access-Control-Allow-Origin: *"); ?> 

あなたのPHPスクリプトに。

別の方法は、 JSONPを使用することです。

于 2012-08-30T10:54:14.217 に答える