大家好,又见面了,我是你们的朋友全栈君。
<script>
//obj :{method:"get",url:"",data:{}};
function httpRequest(obj,successfun,errFun){
var xmlHttp = null;
//创建 XMLHttpRequest 对象,老版本的 Internet Explorer (IE5 和 IE6)使用 ActiveX 对象:xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
if(window.XMLHttpRequest){
//code for all new browsers
xmlHttp = new XMLHttpRequest;
}else if(window.ActiveXObject){
//code for IE5 and IE6
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
//判断是否支持请求
if(xmlHttp == null){
alert("浏览器不支持xmlHttp");
return;
}
//请求方式, 转换为大写
var httpMethod = (obj.method || "Get").toUpperCase();
//数据类型
var httpDataType = obj.dataType||'json';
//url
var httpUrl = obj.url || '';
//异步请求
var async = true;
//post请求时参数处理
if(httpMethod=="POST"){
//请求体中的参数 post请求参数格式为:param1=test¶m2=test2
var data = obj.data || {
};
var requestData = '';
for(var key in data){
requestData = requestData + key + "=" + data[key] + "&";
}
if(requestData == ''){
requestData = '';
}else{
requestData = requestData.subString(0,requestData.length - 1);
}
console.log(requestData);
}
//onreadystatechange 是一个事件句柄。它的值 (state_Change) 是一个函数的名称,当 XMLHttpRequest 对象的状态发生改变时,会触发此函数。状态从 0 (uninitialized) 到 4 (complete) 进行变化。仅在状态为 4 时,我们才执行代码
xmlHttp.onreadystatechange = function(){
//complete
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
//请求成功执行的回调函数
successfun(xmlHttp.responseText);
}else{
//请求失败的回调函数
errFun;
}
}
}
//请求接口
if(httpMethod == 'GET'){
xmlHttp.open("GET",httpUrl,async);
xmlHttp.send(null);
}else if(httpMethod == "POST"){
xmlHttp.open("POST",httpUrl,async);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttp.send(requestData);
}
}
</script>
/** 测试代码 */
<script>
httpRequest({
method:"post",
url:"",//请求的url地址
data:{
param1:''
}
},function(res){
console.log(res);
},function(){
console.log("请求失败");
});
</script>
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/142580.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...