zoukankan      html  css  js  c++  java
  • js ajax

    //通用请求入口
    $.extend({
        ajaxReq: function(options){
            var url     = options.url || '';
            var type        = options.type|| 'get';
            var data    = options.data|| {};
            var dataType    = options.dataType || 'json';
            var async       = options.async || true;
            var successFn    = options.succuss || null;    
            var error     = option.error || null;
            var beforeFn    = option.beforeSend || null;
            var complete  = option.complete || null;
            $.ajax({
                url : url,
                type: type,
                data: data,        
                dataType : dataType,
                beforeSend:function(){                
                    if(beforeFn){
                       beforeFn.call(null, Array.prototype.slice.call(arguments));
                    }               
                },        
                complete  :function(){
                    if(complete){
                         complete.apply(null, Array.prototype.slice.call(arguments));
                    }
                },
                success   :function(msg){
                   if(successFn){
                      successFn.call(null, msg);
                   }
                },
                error     :function(){
                   if(error){
                     error.apply(null, Array.prototype.slice.call(arguments));
                   }
                }
               }
            });
        }
    });

  • 相关阅读:
    10_23自定义签发token,其他drf组件
    10_22频率认证和jwt
    10_21 三大认证
    vue2.0实现过滤
    windows下零基础gulp构建
    vue1.0+vue2.0实现选项卡
    数组去重方法
    stop()在animate中的用法
    两边固定,中间自适应
    JS获取宽度高度大集合
  • 原文地址:https://www.cnblogs.com/andydao/p/5076457.html
Copyright © 2011-2022 走看看