zoukankan      html  css  js  c++  java
  • 微信小程序写一个请求接口函数

    var getAjax = function(options){
      wx.getNetworkType({   //获取网络类型
        success: function (res) {
          // 返回网络类型, 有效值:
          // wifi/2g/3g/4g/unknown(Android下不常见的网络类型)/none(无网络)
          if(res.networkType == 'none'){
            showModal("网络已断开,请联网后重试!",function(){
              if(options.complete){
                options.complete();
              }
            });
          }else{
            if (wx.showLoading) {
              wx.showLoading({
                title: '加载中',  
              })
            }
            if (options.token) {
              var _header = {
                'content-type': 'application/json',
                'Cookie': 'JSESSIONID=' + options.token
              };
            } else {
              var _header = {
                'content-type': 'application/json'
              }
            }
            return wx.request({
              url: baseUrl + options.url,
              data: options.params,
              method: options.method ? options.method : 'GET',
              success: options.success,
              header: _header,
              fail: function (res) {
                if (options.fail) {
                  options.fail(res)
                }
              },
              complete: function () {
                if (wx.hideLoading) {
                  setTimeout(function () {
                    wx.hideLoading()//关闭提示
                  }, 400);
                }
                if (options.complete) {
                  options.complete();
                }
              }
            });
          }
        },
        fail:function(res){
          console.log("获取网络状态失败:",res);
        }
      });
    }
     
    showModal(cnt,fn);为自己写的一函数,用于显示弹窗,cnt为要显示的内容,fn为点击确定按钮执行的函数,有则执行。
    if (wx.hideLoading)与if(wx.showLoading) 用于判断是否支持这个api
  • 相关阅读:
    获取URL的name值 getUrl(url,name) 传入url和key 得到key对应的value
    封装GetQueryString()方法来获取URL的value值
    判断设备
    RecyclerView 加点击事件
    SparseArray,SparseBooleanArray和SparseIntArray
    内存泄漏监测-LeakCanary
    StrictMode
    数据结构-线性结构
    程序设计语言基础-知识点
    数据结构-概念
  • 原文地址:https://www.cnblogs.com/apgy/p/7727767.html
Copyright © 2011-2022 走看看