AJAX的post和get请求区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AJAX的post和get请求区别相关的知识,希望对你有一定的参考价值。

 

 

get请求

// document.querySelector(‘button‘).onclick=function(){
// var txt=document.querySelector(‘input‘).value;
// var xhr=new XMLHttpRequest();
// xhr.open(‘get‘,‘03-fasongshuju.php?msg=‘+txt);
// xhr.setRequestHeader(‘Content-Type‘,‘text/html‘);
// xhr.send(null);
// xhr.onreadystatechange=function(){
// if(xhr.readyState==4&&xhr.status==200){
// var re=xhr.responseText;
// document.querySelector(‘div‘).innerHTML=re;
// }
// }
// }
post请求:

document.querySelector(‘button‘).onclick=function(){
var txt=document.querySelector(‘input‘).value;
var xhr=new XMLHttpRequest();
xhr.open(‘post‘,‘03-fasongshujupost.php‘);
xhr.setRequestHeader(‘Content-Type‘,‘application/x-www-form-urlencoded‘);//post这块不一样
xhr.send(‘msg=‘+txt);//这块也不一样
xhr.onreadystatechange=function(){
if(xhr.readyState==4&&xhr.status==200){
var yaru=xhr.responseText;
document.querySelector(‘div‘).innerHTML=yaru;
}
}
}


























以上是关于AJAX的post和get请求区别的主要内容,如果未能解决你的问题,请参考以下文章

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

AJAX的post和get请求区别

前端ajax中运用post请求和get请求之于session验证

ajax,get和post的区别

Ajax中post与get的区别

Ajax中get请求和post请求