提起Ajax请求的方式(POST)

Posted HF9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提起Ajax请求的方式(POST)相关的知识,希望对你有一定的参考价值。

前言

=> 是ES6中的arrow function

x=>x+6

就相当于

function(x){
    return x+6;
}

正文

XMLHttpRequest

a=new XMLHttpRequest();
a.open("POST",url,true);
a.send("username=aaa");
a.onreadystatechange=function(){
    if(a.readystate==4&&a.status==200){
        alert(a.responseText);
    }
}

fetch

fetch(url,{
    method:"POST",
    headers:{"Content-Type:application/x-www-form-urlencoded"},
    body:"username=aaa"
}).then(function(res){
    return res.text();
}).then(function(data){
    alert(data);
})
    

fetch(url,{
    method:"POST",
    headers:{"Content-Type:application/x-www-form-urlencoded"},
    body:"username=aaa"
}).then(res=>res.text()).then(data=>alert(data))

上面两种是相同的

jQuery

$.post(url,{"username":"aaa"},function(text){
    alert(text);
})
$.ajax({
    type:"POST",
    url:url,
    data:"username=aaa",
    success:function(text){
        alert(text);
    }
})

以上是关于提起Ajax请求的方式(POST)的主要内容,如果未能解决你的问题,请参考以下文章

ajax中get和post请求的区别

Ajax中get请求和post请求

AJAX(二)详解GET/POST请求

ajax的post请求方式

解析ajax请求post和get的区别

ajax中Post和Get请求方式的区别?