欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于Vue的ajax公共方法(详解)

程序员文章站 2022-07-05 20:14:19
为了减少代码的冗余,决定抽离出请求ajax的公共方法,供同事们使用。 我使用了es6语法,编写了这个方法。 /** * @param type 请求类...

为了减少代码的冗余,决定抽离出请求ajax的公共方法,供同事们使用。

我使用了es6语法,编写了这个方法。

/**
  * @param type 请求类型,分为post/get
  * @param url 请求url
  * @param contenttype
  * @param headers
  * @param data
  * @returns {promise<any>}
  */
 ajaxdata: function (type, url, contenttype, headers, data) {
  return new promise(function(resolve) {
   $.ajax({
    type: type,
    url: url,
    data: data,
    timeout: 30000, //超时时间:10秒
    headers: headers,
    success: function(data) {
     resolve(data);
    },
    error: function(xmlhttprequest, textstatus, errorthrown) {
     resolve(xmlhttprequest);
    }
   });
  });
 }

通过回调函数的方式返回请求结果。

测试代码如下:

getajaxdatamethod: function () {
    const url = "";
    const type = "post";
    const contenttype = "application/json";
    const headers = {};
    const data = {};
    api.ajaxdata(type, url, contenttype, headers, data).then(function (res) {
     console.log(res);
    }).catch(function (err) {
     console.log(err);
    })
   }

测试通过!

以上这篇基于vue的ajax公共方法(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。