javascript ajax请求封装

function ajax(opt) {
    try {
      opt = opt || {};
      opt.headers = opt.headers || null;
      opt.method = opt.method.toUpperCase() || "POST";
      opt.url = opt.url || "";
      opt.async = opt.async || true;
      opt.data = opt.data || null;
      opt.success = opt.success || function () {};
      opt.fail = opt.fail || function () {};
      var xmlHttp = null;
      if (XMLHttpRequest) {
        xmlHttp = new XMLHttpRequest();
      } else {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
      var params = [];
      for (var key in opt.data) {
        params.push(key + "=" + opt.data[key]);
      }
      var postData = params.join("&");
      if (opt.method.toUpperCase() === "POST") {
        xmlHttp.open(opt.method, opt.url, opt.async);
        xmlHttp.setRequestHeader(
          "Content-Type",
          "application/x-www-form-urlencoded;charset=utf-8"
        );
        for (var key in opt.headers) {
          xmlHttp.setRequestHeader(key, encodeURI(opt.headers[key]));
        }
        xmlHttp.send(postData);
      } else if (opt.method.toUpperCase() === "GET") {
        xmlHttp.open(opt.method, opt.url + "?" + postData, opt.async);
        xmlHttp.send(null);
      }
      xmlHttp.onreadystatechange = function () {
        //readyState = 4时表示请求结束
        if (xmlHttp.readyState == 4) {
          if (xmlHttp.status == 200) {
            // console.log(xmlHttp.responseText);
            opt.success(JSON.parse(xmlHttp.responseText)); //如果不是json数据可以去掉json转换
          } else {
            console.log("2222");

            opt.fail(xmlHttp.status + xmlHttp.response);
            // console.log("请求失败:" + xmlHttp.status + xmlHttp.response);
          }
        }
      };
    } catch (e) {
      opt.fail(e);
      // console.log(e);
    }
  }

使用方法

ajax({
     method: "POST",
     headers: {
		aa: "1",
		bb: "1"
     },
     url: "http://www.dd.xx",
     data: {
		kk:"vv",
	 	xx:"yy"
     },
     success: function (result) {
        console.log(JSON.stringify(result));
     },
     fail: function (e) {},
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

大炮走火

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值