| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**
- * ajax的二次封装
- * Created by huantt on 2018/7/16.
- * https://blog.csdn.net/u010791662
- */
- (function () {
- /**
- *
- * @param opts
- */
- function doAjax(opts) {
- this.url = opts.url;
- this.data = opts.data || {};
- // this.isShowLoad = opts.isShowLoad == undefined ? false : opts.isShowLoad;
- this.Type = opts.Type || "POST";
- this.dataType = opts.dataType || "json";
- this.callBack = opts.callBack;
- this.async = opts.async || true;
- this.contentType = opts.contentType == undefined ? "application/x-www-form-urlencoded" : opts.contentType;
- this.processData = opts.processData == undefined ? true : opts.processData;
- this.error = opts.error || requestError;
- this.init();
- }
- //初始化
- doAjax.prototype.init = function () {
- this.getRequire();
- };
- //发送请求
- doAjax.prototype.getRequire = function () {
- var self = this;
- // if (self.isShowLoad)
- // showWait(0);
- $.ajax({
- url: self.url,
- data: self.data,
- type: self.Type,
- dataType: self.dataType,
- async: self.async,
- contentType: self.contentType,
- processData: self.processData,
- success: function (res) {
- beforeResponse(res);
- if (self.callBack) {
- if ($.isFunction(self.callBack)) {
- self.callBack(res);
- } else {
- console.log("callBack is not a function");
- }
- }
- },
- error: self.error
- }
- );
- };
- window.doAjax = doAjax;
- return this;
- })();
- /**
- * 请求错误的统一处理
- * @param jqXHR
- * @param textStatus
- * @param errorThrown
- */
- function requestError(jqXHR, textStatus, errorThrown) {
- /*弹出jqXHR对象的信息*/
- // console.log(jqXHR.responseText);
- console.log(jqXHR.status);
- // console.log(jqXHR.readyState);
- // console.log(jqXHR.statusText);
- // /*弹出其他两个参数的信息*/
- // console.log(textStatus);
- // console.log(errorThrown);
- }
- /**
- * 执行回调函数前的统一处理
- * @param result
- */
- function beforeResponse(result) {
- }
|