jQueryなしでAJAX呼び出しを行う方法は?


789

jQueryを使用せずにJavaScriptを使用してAJAX呼び出しを行う方法は?


20
ここでの回答の多くはreadystatechangeをリッスンすることをお勧めしますが、最新のブラウザーは現在、XMLHttpRequestloadabortprogress、およびerrorイベントをサポートしていることに注意してください(ただし、おそらくloadのみを気にするでしょう)。
Paul S.

2
@ImadoddinIbnAlauddinたとえば、メイン機能(DOMトラバース)が不要な場合。
2015

8
youmightnotneedjquery.com多くの純粋なjsの例を含む。ie8 +、ie9 +、ie10 +のajax
Sanya_Zol

1
w3schoolsには、jqueryを使用せずにajaxに段階的に導入する方法があります。w3schools.com
eli

EHTMLを使用することもできます:github.com/Guseyn/EHTML jsonをフェッチしてhtml要素にマッピングするためにe-json要素を使用します
Guseyn Ismayylov

回答:


591

「バニラ」JavaScriptの場合:

<script type="text/javascript">
function loadXMLDoc() {
    var xmlhttp = new XMLHttpRequest();

    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == XMLHttpRequest.DONE) {   // XMLHttpRequest.DONE == 4
           if (xmlhttp.status == 200) {
               document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
           }
           else if (xmlhttp.status == 400) {
              alert('There was an error 400');
           }
           else {
               alert('something else other than 200 was returned');
           }
        }
    };

    xmlhttp.open("GET", "ajax_info.txt", true);
    xmlhttp.send();
}
</script>

jQueryの場合:

$.ajax({
    url: "test.html",
    context: document.body,
    success: function(){
      $(this).addClass("done");
    }
});

1
@Fractaliste xmlhttp.statusに関連するifブロックの後に単純にコールバックを呼び出す場合は、そこでコールバックするだけで完了です。
ジェイ

5
@Wade Gokigooooksが「バニラ」JavaScriptを読んだとき、彼はそれが彼がダウンロードする必要があるJavaScriptライブラリだと思ったと言っていると思います。彼はバニラJSを参照している可能性もあります。
2015年

221

次のスニペットを使用すると、次のように非常に簡単に同様のことができます。

ajax.get('/test.php', {foo: 'bar'}, function() {});

これがスニペットです:

var ajax = {};
ajax.x = function () {
    if (typeof XMLHttpRequest !== 'undefined') {
        return new XMLHttpRequest();
    }
    var versions = [
        "MSXML2.XmlHttp.6.0",
        "MSXML2.XmlHttp.5.0",
        "MSXML2.XmlHttp.4.0",
        "MSXML2.XmlHttp.3.0",
        "MSXML2.XmlHttp.2.0",
        "Microsoft.XmlHttp"
    ];

    var xhr;
    for (var i = 0; i < versions.length; i++) {
        try {
            xhr = new ActiveXObject(versions[i]);
            break;
        } catch (e) {
        }
    }
    return xhr;
};

ajax.send = function (url, callback, method, data, async) {
    if (async === undefined) {
        async = true;
    }
    var x = ajax.x();
    x.open(method, url, async);
    x.onreadystatechange = function () {
        if (x.readyState == 4) {
            callback(x.responseText)
        }
    };
    if (method == 'POST') {
        x.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
    }
    x.send(data)
};

ajax.get = function (url, data, callback, async) {
    var query = [];
    for (var key in data) {
        query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
    }
    ajax.send(url + (query.length ? '?' + query.join('&') : ''), callback, 'GET', null, async)
};

ajax.post = function (url, data, callback, async) {
    var query = [];
    for (var key in data) {
        query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
    }
    ajax.send(url, callback, 'POST', query.join('&'), async)
};

1
これは本当に素晴らしいジャンプスタートですが、@ 3nigmaの回答にある機能が欠けていると思います。つまり、サーバーの応答を返さずに特定の要求(すべて取得と一部の投稿)を行うことがどれほど意味があるかわかりません。sendメソッドの最後に別の行を追加しましたreturn x.responseText;--そして、各ajax.send呼び出しを返します。
サム

3
@Samは、[通常]非同期リクエストとして返すことができません。コールバックで応答を処理する必要があります。
Petah 2014

@サムはそこに例があります:ajax.get('/test.php', {foo: 'bar'}, function(responseText) { alert(responseText); });
Petah

素晴らしいスニペット。しかし、query.join('&').replace(/%20/g, '+')代わりにすべきではありませんか?
afsantos 2014

3
この行をオプションとして含めて、CORSリクエストも含めてください。'xhr.withCredentials = true;'
Akam

131

私はこれがかなり古い質問であることを知っていますが、新しいブラウザーでネイティブに利用できるより良いAPIがあります。このfetch()メソッドを使用すると、Web要求を行うことができます。たとえば、いくつかのjsonをリクエストするには/get-data

var opts = {
  method: 'GET',      
  headers: {}
};
fetch('/get-data', opts).then(function (response) {
  return response.json();
})
.then(function (body) {
  //doSomething with body;
});

詳細はこちらをご覧ください。


9
実際、IEとEdgeはFetch APIをサポートしていないため、Fetch APIが「新しいブラウザ」で機能すると主張するのは正しくありません。(Edge 14では、ユーザーがこの機能を具体的に有効にする必要があります) caniuse.com/#feat=fetch
saluce

7
ここでGitHubのポリフィルについて言及する必要があります。github.com/github/fetch
TylerY86

7
<script src="https://cdn.rawgit.com/github/fetch/master/fetch.js"></script>チャンプのようにフェッチを追加して使用するだけです。
TylerY86 2016

7
@saluce Edge 14ではデフォルトで有効になっています(IEは「新しい」ブラウザではなくなりました:-)
Supersharp

1
モバイルではFetchを使用しないでください。AndroidではHTTPヘッダーの小文字の問題があります。iOSでうまく動作します。
ケニーリム2017年

104

次の関数を使用できます。

function callAjax(url, callback){
    var xmlhttp;
    // compatible with IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp = new XMLHttpRequest();
    xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
            callback(xmlhttp.responseText);
        }
    }
    xmlhttp.open("GET", url, true);
    xmlhttp.send();
}

次のリンクから同様のソリューションをオンラインで試すことができます。


また、リクエストに入力変数を追加するとよいでしょう(xmlhttp.send(request);で使用されます)
Pavel Perna

2
@PavelPerna、ここの例はGETなので、リクエストに追加することができますが、もっと一般的に言えば、私はあなたと一緒です、ここで関数のパラメーターとしてリクエストパラメーターを受け入れるように答えを更新することを本当に考えました、&​​もメソッド(GETまたはPOST)を渡しますが、ここでの答えをできるだけ簡単にして、人々ができるだけ早く試すことができるようにしたいのです。実際には、私は他のいくつかの回答が長
すぎるのを嫌っていました。

40

プレーンES6 / ES2015のこのバージョンはどうですか?

function get(url) {
  return new Promise((resolve, reject) => {
    const req = new XMLHttpRequest();
    req.open('GET', url);
    req.onload = () => req.status === 200 ? resolve(req.response) : reject(Error(req.statusText));
    req.onerror = (e) => reject(Error(`Network Error: ${e}`));
    req.send();
  });
}

関数はpromiseを返します。次に、関数の使用方法と、関数が返すpromiseの処理方法の例を示します。

get('foo.txt')
.then((data) => {
  // Do stuff with data, if foo.txt was successfully loaded.
})
.catch((err) => {
  // Do stuff on error...
});

jsonファイルをロードする必要がある場合は、使用JSON.parse()して、ロードされたデータをJSオブジェクトに変換できます。

また、統合することができるreq.responseType='json'機能に残念ながらありませんそれにはIEのサポートは、私はに固執でしょうJSON.parse()


2
を使用XMLHttpRequestすると、ファイルのロードを非同期で試行できます。つまり、ファイルがバックグラウンドで読み込まれている間、コードの実行が続行されます。スクリプトでファイルのコンテンツを使用するには、ファイルのロードが完了したかロードが失敗したかをスクリプトに通知するメカニズムが必要です。ここで約束が重宝します。この問題を解決する方法は他にもありますが、promiseが最も便利だと思います。
Rotareti

@Rotaretiモバイルブラウザはこのアプローチをサポートしていますか?
bodruk 2017年

新しいブラウザバージョンのみがサポートしています。一般的な方法は、最新のES6 / 7 / ..でコードを記述し、Babelなどを使用してそれをES5にトランスパイルして、ブラウザーのサポートを向上させることです。
ロタレティ2017年

2
@Rotaretiなぜこれが「単純な」コールバックよりも便利なのかを説明できますか この便利さは、古いブラウザのサポートのためにトランスパイルするための追加の努力に値しますか?
lennyklb 2017

@LennartKloppenburg私はこの答えがそれをうまく説明していると思います:stackoverflow.com/a/14244950/1612318 「この便利さは、古いブラウザのサポートのためにトランスパイルするための追加の努力に値するのですか?」 Promiseは、ES6 / 7に付属する多くの機能の1つにすぎません。トランスパイラーを使用する場合は、最新のJSを作成できます。価値があります!
ロタレティ2017

38
 var xhReq = new XMLHttpRequest();
 xhReq.open("GET", "sumGet.phtml?figure1=5&figure2=10", false);
 xhReq.send(null);
 var serverResponse = xhReq.responseText;
 alert(serverResponse); // Shows "15"

58
同期呼び出しを行わないでください。xhReq.onloadを使用し、コールバックを使用します。
2013

3
@FellowStranger oReq.onload = function(){/*this.responseText*/};
2013年

3
@kenansulayman同期呼び出しの何が問題になっていますか?時々それは最高に合います。
Andrii Nemchenko

@Andrey:サーバーからの応答が返されるまですべての実行を停止していることに気づく限り、何もありません。それほど悪いことは何もありませんが、一部の用途にはまったく適切ではないかもしれません。
mrówa

また、サーバーが何らかの理由で実際に応答しない場合、残りのコードは実行されません。
ランダムエレファント

35

XMLHttpRequestを使用します。

単純なGETリクエスト

httpRequest = new XMLHttpRequest()
httpRequest.open('GET', 'http://www.example.org/some.file')
httpRequest.send()

単純なPOSTリクエスト

httpRequest = new XMLHttpRequest()
httpRequest.open('POST', 'http://www.example.org/some/endpoint')
httpRequest.send('some data')

オプションの3番目の引数を使用して、リクエストが非同期(true)、デフォルト、または同期(false)であることを指定できます。

// Make a synchronous GET request
httpRequest.open('GET', 'http://www.example.org/some.file', false)

呼び出す前にヘッダーを設定できます httpRequest.send()

httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');

httpRequest.onreadystatechange呼び出す前に関数に設定することで応答を処理できますhttpRequest.send()

httpRequest.onreadystatechange = function(){
  // Process the server response here.
  if (httpRequest.readyState === XMLHttpRequest.DONE) {
    if (httpRequest.status === 200) {
      alert(httpRequest.responseText);
    } else {
      alert('There was a problem with the request.');
    }
  }
}

1
200以外にも成功したステータスがあることに注意してください。例:201
ネイトヴォーン

30

あなたはブラウザに応じて正しいオブジェクトを得ることができます

function getXmlDoc() {
  var xmlDoc;

  if (window.XMLHttpRequest) {
    // code for IE7+, Firefox, Chrome, Opera, Safari
    xmlDoc = new XMLHttpRequest();
  }
  else {
    // code for IE6, IE5
    xmlDoc = new ActiveXObject("Microsoft.XMLHTTP");
  }

  return xmlDoc;
}

正しいオブジェクトを使用すると、GETを次のように抽象化できます。

function myGet(url, callback) {
  var xmlDoc = getXmlDoc();

  xmlDoc.open('GET', url, true);

  xmlDoc.onreadystatechange = function() {
    if (xmlDoc.readyState === 4 && xmlDoc.status === 200) {
      callback(xmlDoc);
    }
  }

  xmlDoc.send();
}

そして、POSTは:

function myPost(url, data, callback) {
  var xmlDoc = getXmlDoc();

  xmlDoc.open('POST', url, true);
  xmlDoc.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

  xmlDoc.onreadystatechange = function() {
    if (xmlDoc.readyState === 4 && xmlDoc.status === 200) {
      callback(xmlDoc);
    }
  }

  xmlDoc.send(data);
}

18

ajaxにpromiseを含め、jQueryを除外する方法を探していました。ES6の約束について語るHTML5 Rocksに関する記事があります。(Qのようなpromiseライブラリでポリフィルできます)記事からコピーしたコードスニペットを使用できます。

function get(url) {
  // Return a new promise.
  return new Promise(function(resolve, reject) {
    // Do the usual XHR stuff
    var req = new XMLHttpRequest();
    req.open('GET', url);

    req.onload = function() {
      // This is called even on 404 etc
      // so check the status
      if (req.status == 200) {
        // Resolve the promise with the response text
        resolve(req.response);
      }
      else {
        // Otherwise reject with the status text
        // which will hopefully be a meaningful error
        reject(Error(req.statusText));
      }
    };

    // Handle network errors
    req.onerror = function() {
      reject(Error("Network Error"));
    };

    // Make the request
    req.send();
  });
}

注:これについて記事を書きまし


15

以下の例のいくつかを組み合わせて、この単純な部分を作成しました。

function ajax(url, method, data, async)
{
    method = typeof method !== 'undefined' ? method : 'GET';
    async = typeof async !== 'undefined' ? async : false;

    if (window.XMLHttpRequest)
    {
        var xhReq = new XMLHttpRequest();
    }
    else
    {
        var xhReq = new ActiveXObject("Microsoft.XMLHTTP");
    }


    if (method == 'POST')
    {
        xhReq.open(method, url, async);
        xhReq.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xhReq.setRequestHeader("X-Requested-With", "XMLHttpRequest");
        xhReq.send(data);
    }
    else
    {
        if(typeof data !== 'undefined' && data !== null)
        {
            url = url+'?'+data;
        }
        xhReq.open(method, url, async);
        xhReq.setRequestHeader("X-Requested-With", "XMLHttpRequest");
        xhReq.send(null);
    }
    //var serverResponse = xhReq.responseText;
    //alert(serverResponse);
}

// Example usage below (using a string query):

ajax('http://www.google.com');
ajax('http://www.google.com', 'POST', 'q=test');

または、パラメータがオブジェクトの場合-マイナーな追加のコード調整:

var parameters = {
    q: 'test'
}

var query = [];
for (var key in parameters)
{
    query.push(encodeURIComponent(key) + '=' + encodeURIComponent(parameters[key]));
}

ajax('http://www.google.com', 'POST', query.join('&'));

どちらもブラウザとバージョンに完全に対応している必要があります。


ここでforループ内でhasOwnPropertyを使用する価値はありますか?
キビブ2015

15

JQueryを含めたくない場合は、軽量のAJAXライブラリをいくつか試してみます。

私のお気に入りはreqwestです。それはわずか3.4kbであり、非常によく構築されています:https : //github.com/ded/Reqwest

reqwestを使用したサンプルGETリクエストは次のとおりです。

reqwest({
    url: url,
    method: 'GET',
    type: 'json',
    success: onSuccess
});

今、あなたはもっと軽量何かが、私は単なる0.4キロバイトでmicroAjaxを試してみたい場合:https://code.google.com/p/microajax/

これがここのすべてのコードです:

function microAjax(B,A){this.bindFunction=function(E,D){return function(){return E.apply(D,[D])}};this.stateChange=function(D){if(this.request.readyState==4){this.callbackFunction(this.request.responseText)}};this.getRequest=function(){if(window.ActiveXObject){return new ActiveXObject("Microsoft.XMLHTTP")}else{if(window.XMLHttpRequest){return new XMLHttpRequest()}}return false};this.postBody=(arguments[2]||"");this.callbackFunction=A;this.url=B;this.request=this.getRequest();if(this.request){var C=this.request;C.onreadystatechange=this.bindFunction(this.stateChange,this);if(this.postBody!==""){C.open("POST",B,true);C.setRequestHeader("X-Requested-With","XMLHttpRequest");C.setRequestHeader("Content-type","application/x-www-form-urlencoded");C.setRequestHeader("Connection","close")}else{C.open("GET",B,true)}C.send(this.postBody)}};

そして、ここにサンプルの呼び出しがあります:

microAjax(url, onSuccess);

1
microAjaxを2回呼び出すと問題があると思います(「this」が多数あるため、衝突が発生するはずです)。2つの「新しいmicroAjax」を呼び出すのが適切な回避策であるかどうかはわかりません。
ジル・ジェンヴィ

13

古いが、私は試してみますが、おそらく誰かがこの情報を役に立つでしょう。

これは、GETリクエストを実行し、JSONフォーマットされたデータをフェッチするために必要な最小限のコードです。これは、最新バージョンのChromeFFSafariOperaMicrosoft Edgeなどの最新のブラウザにのみ適用されます。

const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://example.com/data.json'); // by default async 
xhr.responseType = 'json'; // in which format you expect the response to be


xhr.onload = function() {
  if(this.status == 200) {// onload called even on 404 etc so check the status
   console.log(this.response); // No need for JSON.parse()
  }
};

xhr.onerror = function() {
  // error 
};


xhr.send();

また、XMLHttpRequest APIの Promiseベースの置き換えである新しいFetch APIも確認してください。


9

XMLHttpRequest()

あなたは使用することができXMLHttpRequest()、新規作成するためにコンストラクタをXMLHttpRequestあなたが(のような標準的なHTTPリクエストメソッドを使用してサーバーと対話できるようになります(XHR)オブジェクトGETとのPOST):

const data = JSON.stringify({
  example_1: 123,
  example_2: 'Hello, world!',
});

const request = new XMLHttpRequest();

request.addEventListener('load', function () {
  if (this.readyState === 4 && this.status === 200) {
    console.log(this.responseText);
  }
});

request.open('POST', 'example.php', true);
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
request.send(data);

フェッチ()

fetch()メソッドを使用して、リクエストへの応答を表すオブジェクトにPromise解決するを取得することもできResponseます。

const data = JSON.stringify({
  example_1: 123,
  example_2: 'Hello, world!',
});

fetch('example.php', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
  },
  body: data,
}).then(response => {
  if (response.ok) {
    response.text().then(response => {
      console.log(response);
    });
  }
});

navigator.sendBeacon()

一方、単にPOSTデータを試行しているだけで、サーバーからの応答が必要ない場合は、以下を使用するのが最も簡単な解決策navigator.sendBeacon()です。

const data = JSON.stringify({
  example_1: 123,
  example_2: 'Hello, world!',
});

navigator.sendBeacon('example.php', data);

1
XMLHttpRequestを使用してInternet Explorerの場合でもほとんどのケースをカバーしているので、私はあなたの答えが本当に好きですが、その例では、「const data = ...」を「var data = ...」に変更することをお勧めします(XMLHttpRequest)完全に互換性がある
Dazag

8

youMightNotNeedJquery.comから+JSON.stringify

var request = new XMLHttpRequest();
request.open('POST', '/my/url', true);
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
request.send(JSON.stringify(data));

7

これは役立つかもしれません:

function doAjax(url, callback) {
    var xmlhttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");

    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            callback(xmlhttp.responseText);
        }
    }

    xmlhttp.open("GET", url, true);
    xmlhttp.send();
}

4
<html>
  <script>
    var xmlDoc = null ;

  function load() {
    if (typeof window.ActiveXObject != 'undefined' ) {
      xmlDoc = new ActiveXObject("Microsoft.XMLHTTP");
      xmlDoc.onreadystatechange = process ;
    }
    else {
      xmlDoc = new XMLHttpRequest();
      xmlDoc.onload = process ;
    }
    xmlDoc.open( "GET", "background.html", true );
    xmlDoc.send( null );
  }

  function process() {
    if ( xmlDoc.readyState != 4 ) return ;
    document.getElementById("output").value = xmlDoc.responseText ;
  }

  function empty() {
    document.getElementById("output").value = '<empty>' ;
  }
</script>

<body>
  <textarea id="output" cols='70' rows='40'><empty></textarea>
  <br></br>
  <button onclick="load()">Load</button> &nbsp;
  <button onclick="empty()">Clear</button>
</body>
</html>

4

まあそれはちょうど4ステップの簡単なプロセスです、

それが役に立てば幸い

Step 1. XMLHttpRequestオブジェクトへの参照を保存します

var xmlHttp = createXmlHttpRequestObject();

Step 2. XMLHttpRequestオブジェクトを取得する

function createXmlHttpRequestObject() {
    // will store the reference to the XMLHttpRequest object
    var xmlHttp;
    // if running Internet Explorer
    if (window.ActiveXObject) {
        try {
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (e) {
            xmlHttp = false;
        }
    }
    // if running Mozilla or other browsers
    else {
        try {
            xmlHttp = new XMLHttpRequest();
        } catch (e) {
            xmlHttp = false;
        }
    }
    // return the created object or display an error message
    if (!xmlHttp)
        alert("Error creating the XMLHttpRequest object.");
    else
        return xmlHttp;
}

Step 3. XMLHttpRequestオブジェクトを使用して非同期HTTPリクエストを作成する

function process() {
    // proceed only if the xmlHttp object isn't busy
    if (xmlHttp.readyState == 4 || xmlHttp.readyState == 0) {
        // retrieve the name typed by the user on the form
        item = encodeURIComponent(document.getElementById("input_item").value);
        // execute the your_file.php page from the server
        xmlHttp.open("GET", "your_file.php?item=" + item, true);
        // define the method to handle server responses
        xmlHttp.onreadystatechange = handleServerResponse;
        // make the server request
        xmlHttp.send(null);
    }
}

Step 4. サーバーからメッセージを受信すると自動的に実行されます

function handleServerResponse() {

    // move forward only if the transaction has completed
    if (xmlHttp.readyState == 4) {
        // status of 200 indicates the transaction completed successfully
        if (xmlHttp.status == 200) {
            // extract the XML retrieved from the server
            xmlResponse = xmlHttp.responseText;
            document.getElementById("put_response").innerHTML = xmlResponse;
            // restart sequence
        }
        // a HTTP status different than 200 signals an error
        else {
            alert("There was a problem accessing the server: " + xmlHttp.statusText);
        }
    }
}

3

ブラウザのプレーンJavaScript:

var xhr = new XMLHttpRequest();

xhr.onreadystatechange = function() {
  if (xhr.readyState == XMLHttpRequest.DONE ) {
    if(xhr.status == 200){
      console.log(xhr.responseText);
    } else if(xhr.status == 400) {
      console.log('There was an error 400');
    } else {
      console.log('something else other than 200 was returned');
    }
  }
}

xhr.open("GET", "mock_data.json", true);

xhr.send();

または、Browserifyを使用して、node.jsを使用してモジュールをバンドルする場合。あなたはsuperagentを使うことができます:

var request = require('superagent');
var url = '/mock_data.json';

 request
   .get(url)
   .end(function(err, res){
     if (res.ok) {
       console.log('yay got ' + JSON.stringify(res.body));
     } else {
       console.log('Oh no! error ' + res.text);
     }
 });

3

これがJQueryなしのJSFiffleです

http://jsfiddle.net/rimian/jurwre07/

function loadXMLDoc() {
    var xmlhttp = new XMLHttpRequest();
    var url = 'http://echo.jsontest.com/key/value/one/two';

    xmlhttp.onreadystatechange = function () {
        if (xmlhttp.readyState == XMLHttpRequest.DONE) {
            if (xmlhttp.status == 200) {
                document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
            } else if (xmlhttp.status == 400) {
                console.log('There was an error 400');
            } else {
                console.log('something else other than 200 was returned');
            }
        }
    };

    xmlhttp.open("GET", url, true);
    xmlhttp.send();
};

loadXMLDoc();

3
var load_process = false;
function ajaxCall(param, response) {

 if (load_process == true) {
     return;
 }
 else
 { 
  if (param.async == undefined) {
     param.async = true;
 }
 if (param.async == false) {
         load_process = true;
     }
 var xhr;

 xhr = new XMLHttpRequest();

 if (param.type != "GET") {
     xhr.open(param.type, param.url, true);

     if (param.processData != undefined && param.processData == false && param.contentType != undefined && param.contentType == false) {
     }
     else if (param.contentType != undefined || param.contentType == true) {
         xhr.setRequestHeader('Content-Type', param.contentType);
     }
     else {
         xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
     }


 }
 else {
     xhr.open(param.type, param.url + "?" + obj_param(param.data));
 }

 xhr.onprogress = function (loadTime) {
     if (param.progress != undefined) {
         param.progress({ loaded: loadTime.loaded }, "success");
     }
 }
 xhr.ontimeout = function () {
     this.abort();
     param.success("timeout", "timeout");
     load_process = false;
 };

 xhr.onerror = function () {
     param.error(xhr.responseText, "error");
     load_process = false;
 };

 xhr.onload = function () {
    if (xhr.status === 200) {
         if (param.dataType != undefined && param.dataType == "json") {

             param.success(JSON.parse(xhr.responseText), "success");
         }
         else {
             param.success(JSON.stringify(xhr.responseText), "success");
         }
     }
     else if (xhr.status !== 200) {
         param.error(xhr.responseText, "error");

     }
     load_process = false;
 };
 if (param.data != null || param.data != undefined) {
     if (param.processData != undefined && param.processData == false && param.contentType != undefined && param.contentType == false) {
             xhr.send(param.data);

     }
     else {
             xhr.send(obj_param(param.data));

     }
 }
 else {
         xhr.send();

 }
 if (param.timeout != undefined) {
     xhr.timeout = param.timeout;
 }
 else
{
 xhr.timeout = 20000;
}
 this.abort = function (response) {

     if (XMLHttpRequest != null) {
         xhr.abort();
         load_process = false;
         if (response != undefined) {
             response({ status: "success" });
         }
     }

 }
 }
 }

function obj_param(obj) {
var parts = [];
for (var key in obj) {
    if (obj.hasOwnProperty(key)) {
        parts.push(encodeURIComponent(key) + '=' + encodeURIComponent(obj[key]));
    }
}
return parts.join('&');
}

私のajax呼び出し

  var my_ajax_call=ajaxCall({
    url: url,
    type: method,
    data: {data:value},
    dataType: 'json',
    async:false,//synchronous request. Default value is true 
    timeout:10000,//default timeout 20000
    progress:function(loadTime,status)
    {
    console.log(loadTime);
     },
    success: function (result, status) {
      console.log(result);
    },
      error :function(result,status)
    {
    console.log(result);
     }
      });

以前のリクエストを中止する

      my_ajax_call.abort(function(result){
       console.log(result);
       });

2

HTML:

<!DOCTYPE html>
    <html>
    <head>
    <script>
    function loadXMLDoc()
    {
    var xmlhttp;
    if (window.XMLHttpRequest)
      {// code for IE7+, Firefox, Chrome, Opera, Safari
      xmlhttp=new XMLHttpRequest();
      }
    else
      {// code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    xmlhttp.onreadystatechange=function()
      {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
        document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
        }
      }
    xmlhttp.open("GET","1.php?id=99freebies.blogspot.com",true);
    xmlhttp.send();
    }
    </script>
    </head>
    <body>

    <div id="myDiv"><h2>Let AJAX change this text</h2></div>
    <button type="button" onclick="loadXMLDoc()">Change Content</button>

    </body>
    </html>

PHP:

<?php

$id = $_GET[id];
print "$id";

?>

中括弧が必要ない場合は1行で、誰もがIE6を使用します。これはおそらくコピー貼り付けでした。onreadystatechangeの代わりにonloadを使用し、可能な再帰呼び出しのエラーをキャッチします。xmlhttpはひどい変数名です。単にxと呼び出します。
スーパー

1

純粋なJavaScriptを使用した非常に優れたソリューションがここにあります

/*create an XMLHttpRequest object*/

let GethttpRequest=function(){  
  let httpRequest=false;
  if(window.XMLHttpRequest){
    httpRequest   =new XMLHttpRequest();
    if(httpRequest.overrideMimeType){
    httpRequest.overrideMimeType('text/xml');
    }
  }else if(window.ActiveXObject){
    try{httpRequest   =new ActiveXObject("Msxml2.XMLHTTP");
  }catch(e){
      try{
        httpRequest   =new ActiveXObject("Microsoft.XMLHTTP");
      }catch(e){}
    }
  }
  if(!httpRequest){return 0;}
  return httpRequest;
}

  /*Defining a function to make the request every time when it is needed*/

  function MakeRequest(){

    let uriPost       ="myURL";
    let xhrPost       =GethttpRequest();
    let fdPost        =new FormData();
    let date          =new Date();

    /*data to be sent on server*/
    let data          = { 
                        "name"      :"name",
                        "lName"     :"lName",
                        "phone"     :"phone",
                        "key"       :"key",
                        "password"  :"date"
                      };

    let JSONdata =JSON.stringify(data);             
    fdPost.append("data",JSONdata);
    xhrPost.open("POST" ,uriPost, true);
    xhrPost.timeout = 9000;/*the time you need to quit the request if it is not completed*/
    xhrPost.onloadstart = function (){
      /*do something*/
    };
    xhrPost.onload      = function (){
      /*do something*/
    };
    xhrPost.onloadend   = function (){
      /*do something*/
    }
    xhrPost.onprogress  =function(){
      /*do something*/
    }

    xhrPost.onreadystatechange =function(){

      if(xhrPost.readyState < 4){

      }else if(xhrPost.readyState === 4){

        if(xhrPost.status === 200){

          /*request succesfull*/

        }else if(xhrPost.status !==200){

          /*request failled*/

        }

      }


   }
  xhrPost.ontimeout = function (e){
    /*you can stop the request*/
  }
  xhrPost.onerror = function (){
    /*you can try again the request*/
  };
  xhrPost.onabort = function (){
    /*you can try again the request*/
  };
  xhrPost.overrideMimeType("text/plain; charset=x-user-defined-binary");
  xhrPost.setRequestHeader("Content-disposition", "form-data");
  xhrPost.setRequestHeader("X-Requested-With","xmlhttprequest");
  xhrPost.send(fdPost);
}

/*PHP side
<?php
  //check if the variable $_POST["data"] exists isset() && !empty()
  $data        =$_POST["data"];
  $decodedData =json_decode($_POST["data"]);
  //show a single item from the form
  echo $decodedData->name;

?>
*/

/*Usage*/
MakeRequest();
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.