码迷,mamicode.com
首页 > Web开发 > 详细

提起Ajax请求的方式(POST)

时间:2018-10-17 21:17:24      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:eth   use   amp   query   form   open   alert   pre   read   

前言

=> 是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)

标签:eth   use   amp   query   form   open   alert   pre   read   

原文地址:https://www.cnblogs.com/hf99/p/9807013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!