将ajax封装成函数

Posted 俄罗斯方块

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将ajax封装成函数相关的知识,希望对你有一定的参考价值。

function ajax({url,type,data,callback}){
  if (type==undefined){
  type="get"
}
// 1 创建异步对象 var xhr=new XMLHttpRequest(); if(type=="get"&&data!==undefined){ // 如果请求参数不为空且为get,就把参数加到url上 url+="?"+data; } // 2 创建请求 xhr.open(type,url,true); // 3 接收响应数据 xhr.onreadystatechange=function(){ if(xhr.readyState==4&&xhr.status==200){ var result=xhr.responseText; callback(result) } } // 判断请求类型并发送请求 if(type=="post"){ xhr.setRequestHeader(‘Content-Type‘,"application/x-www-form-urlencoded"); } if(type=="post"){ xhr.send(data); }else{ xhr.send(); } }

这样在页面中可以通过调用ajax函数来直接使用ajax:

 

以上是关于将ajax封装成函数的主要内容,如果未能解决你的问题,请参考以下文章

Ajax拓展

SpringMVC将通过ajax发送的 json数据封装成JavaBean

如何将此 JavaScript 代码片段翻译成 Parenscript?

node.js -- Ajax封装

VsCode 代码片段-提升研发效率

封装ajax