zoukankan      html  css  js  c++  java
  • ajax二次封装

    /**
    *@description Ajax请求二次封装 带loading窗口
    */
    function Ajax(options) {

    var wait_ico;
    if(plus != undefined && plus != null) {
    wait_ico = plus.nativeUI.showWaiting();
    }
    mui.ajax('http://' + GetServerInfo() + ((options.url || "").indexOf('/') == 0 ? (options.url || "") : ('/' + options.url || "/")), {
    data: options.data || "",
    dataType: 'json', //服务器返回json格式数据
    type: options.type || 'get', //HTTP请求类型
    timeout: options.timeout || 10000, //超时时间设置为10秒;
    headers: options.headers || "",
    crossDomain:true,
    success: function(data) {
    wait_ico.close();
    console.log(JSON.stringify(data));
    //data = data;
    //console.log(data.IsError)
    if(data.success) {
    if(options.success != null || options.success != undefined) {
    options.success.call(null, data);
    }
    } else {
    plus.nativeUI.toast(data.msg);
    }
    },
    error: function(xhr, type, errorThrown) {
    console.log(123);
    if(wait_ico != null && wait_ico != undefined) {
    wait_ico.close();
    }

    if(type == "timeout") {
    plus.nativeUI.toast("网络链接超时...");
    } else {
    plus.nativeUI.toast("数据加载异常,请重试");
    }

    if(options.error != undefined && options.error != null) {
    options.error.call(null, xhr, type, errorThrown)
    }
    }
    });

    }

    /**
    *@description Ajax请求二次封装 无loading窗口
    */
    function AjaxAnsyc(options) {
    mui.ajax('http://' + GetServerInfo() + ((options.url || "").indexOf('/') == 0 ? (options.url || "") : ('/' + options.url || "/")), {
    data: options.data || "",
    dataType: 'json', //服务器返回json格式数据
    type: options.type || 'get', //HTTP请求类型
    timeout: options.timeout || 10000, //超时时间设置为10秒;
    success: function(data) {
    if(data.success) {
    if(options.success != null || options.success != undefined) {
    options.success.call(null, data.result);
    }
    } else {
    plus.nativeUI.toast(data.msg);
    }
    },
    error: function(xhr, type, errorThrown) {
    if(type == "timeout") {
    plus.nativeUI.toast("网络链接超时");
    } else {
    plus.nativeUI.toast("数据加载异常,请重试");
    }
    if(options.error != undefined && options.error != null) {
    options.error.call(null, xhr, type, errorThrown)
    }
    }
    });

    }

  • 相关阅读:
    关于 转换图片url为base64格式以及base64格式图片地址转为图片文件
    rem布局在Androidwebview中页面错乱
    vue中 $event 的用法--获取当前父元素,子元素,兄弟元素
    vue实现动态改变title
    vue页面跳转-携带参数
    vue项目打包部署生产环境
    Mark区
    kma 2019CSP前刷题记录
    机房的沙茶日常
    2019NOIP算法复健+学习
  • 原文地址:https://www.cnblogs.com/daimaxuejia/p/13410300.html
Copyright © 2011-2022 走看看