es6 vanilla javascript中的Ajax请求

Posted

技术标签:

【中文标题】es6 vanilla javascript中的Ajax请求【英文标题】:Ajax request in es6 vanilla javascript 【发布时间】:2018-06-03 01:13:19 【问题描述】:

我可以使用 jquery 和 es5 发出 ajax 请求,但我想转换我的代码,以便它的 vanilla 和使用 es6。这个请求将如何改变。 (注:我查询的是***的api)。

      var link = "https://en.wikipedia.org/w/api.php?action=query&prop=info&pageids="+ page +"&format=json&callback=?";

    $.ajax(
      type: "GET",
      url: link,
      contentType: "application/json; charset=utf-8",
      async: false,
      dataType: "json",
      success:function(re)
    ,
      error:function(u)
        console.log("u")
        alert("sorry, there are no results for your search")
    

【问题讨论】:

您将使用 fetch API:developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch XMLHttpRequest .... 或者 fetch ... 你自己决定... 顺便说一句,这真的与 ES5 vs ES6 无关 两者都可以。但我更喜欢 fetch。 Either would be fine. But I would prefer fetch - 然后这样做 *** API 看起来不需要 JSONP 请求。只需一个简单的 JSON 请求即可。 【参考方案1】:

你可能会使用fetch API:

fetch(link,  headers:  "Content-Type": "application/json; charset=utf-8" )
    .then(res => res.json()) // parse response as JSON (can be res.text() for plain response)
    .then(response => 
        // here you do what you want with response
    )
    .catch(err => 
        console.log("u")
        alert("sorry, there are no results for your search")
    );

如果你想让异步,那是不可能的。但是您可以使用Async-Await 功能使其看起来不像异步操作。

【讨论】:

【参考方案2】:

AJAX 请求可用于异步发送数据、获取响应、检查响应并通过更新其内容应用于当前网页。

function ajaxRequest()

    var link = "https://en.wikipedia.org/w/api.php?action=query&prop=info&pageids="+ page +"&format=json&callback=?";
    var xmlHttp = new XMLHttpRequest(); // creates 'ajax' object
        xmlHttp.onreadystatechange = function() //monitors and waits for response from the server
        
           if(xmlHttp.readyState === 4 && xmlHttp.status === 200) //checks if response was with status -> "OK"
           
               var re = JSON.parse(xmlHttp.responseText); //gets data and parses it, in this case we know that data type is JSON. 
               if(re["Status"] === "Success")
               //doSomething
               else 
               
                   //doSomething
               
           

        
        xmlHttp.open("GET", link); //set method and address
        xmlHttp.send(); //send data


【讨论】:

【参考方案3】:

现在您不需要使用 jQuery 或任何 API。就这么简单:

var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() 
  if (this.readyState === 4 && this.status === 200) 
    console.log(this.responseText);
  
;
xmlhttp.open('GET', 'https://www.example.com');
xmlhttp.send();

【讨论】:

你在开玩笑吗? ? 这是最古老的方法,这也是 jQuery 被发明的全部原因(为了绕过这些乏味的 API)。在现代 JS 中,“现在”,您应该使用 fetch() API:developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch

以上是关于es6 vanilla javascript中的Ajax请求的主要内容,如果未能解决你的问题,请参考以下文章

javascript Vanilla JS in a Nutshell

Vanilla JavaScript 中的事件处理程序命名空间

javascript [相同]用于匹配数组#vanilla #script中的两个字符串的脚本

将对象列表打印为 vanilla javascript 中的链接

Vanilla JavaScript:禁用整个网站中的所有关键组合

jquery 或 vanilla javascript 自动加载(jquery 加载)页面中的所有链接内容