永发信息网

如何在ajax请求中设置特殊的RequestHeader

答案:2  悬赏:0  手机版
解决时间 2021-01-03 23:39
  • 提问者网友:留有余香
  • 2021-01-03 01:04
如何在ajax请求中设置特殊的RequestHeader
最佳答案
  • 五星知识达人网友:青灯有味
  • 2021-01-07 00:15
function get(url, fn){
//建立ajax对象
var xhr;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}else{
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
//建立连接
xhr.open("GET", url, true);
//发送请求
xhr.send();
//接收响应
xhr.onreadystatechange = function(){
if( xhr.readyState == 4 && xhr.status == 200 ){
if( fn ){
fn(xhr.responseText);//回调函数
}
}
}
}

function post(url, arg, fn){
//建立ajax对象
var xhr;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}else{
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
//建立连接
xhr.open("POST", url, true);
//发送请求
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xhr.send(arg);
//接收响应
xhr.onreadystatechange = function(){
if( xhr.readyState == 4 && xhr.status == 200 ){
if( fn ){
fn(xhr.responseText);//回调函数
}
}
}
}
全部回答
  • 1楼网友:梦中风几里
  • 2021-01-07 00:55
用jquery编写,它的ajax函数中,有一个beforesend方法,这个方法接受一个参数,就代表了发起异步请求的xmlhttprequest对象,我们可以用该对象的setrequest...
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯