基于Vue的ajax公共方法(详解)
程序员文章站
2022-04-10 11:09:17
为了减少代码的冗余,决定抽离出请求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公共方法(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Android编程解析XML文件的方法详解【基于XmlPullParser】
-
基于linux与windows平台下 如何下载android sdk源代码的方法详解
-
对Vue table 动态表格td可编辑的方法详解
-
详解Vue项目中出现Loading chunk {n} failed问题的解决方法
-
详解vue-cli+es6引入es5写的js(两种方法)
-
tp5框架基于ajax实现异步删除图片的方法示例
-
基于Vue2的移动端开发环境搭建详解
-
vue.js 双层嵌套for遍历的方法详解, 类似php foreach()
-
基于App自适应draw9patch不失真背景的方法详解
-
详解基于vue的服务端渲染框架NUXT