欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序网络请求封装示例

程序员文章站 2023-02-12 16:16:27
网络请求 网络请求小程序提供了wx.request, 仔细看一下 api,这不就是n年前的 $.ajax 吗,好古老啊。 // 官方例子 wx.reque...

网络请求

网络请求小程序提供了wx.request, 仔细看一下 api,这不就是n年前的 $.ajax 吗,好古老啊。

// 官方例子
wx.request({
 url: 'test.php', //仅为示例,并非真实的接口地址
 data: {
   x: '' ,
   y: ''
 },
 header: {
   'content-type': 'application/json' // 默认值
 },
 success: function(res) {
  console.log(res.data)
 }
})

小程序支持es6,那么就应该支持promise 了,很开心~, 话不多说直接上代码吧

promise封装

const baseurl = 'https://api.it120.cc';

const http = ({ url = '', param = {}, ...other } = {}) => {
  wx.showloading({
    title: '请求中,请耐心等待..'
  });
  let timestart = date.now();
  return new promise((resolve, reject) => {
    wx.request({
      url: geturl(url),
      data: param,
      header: {
        'content-type': 'application/json' // 默认值 ,另一种是 "content-type": "application/x-www-form-urlencoded"
      },
      ...other,
      complete: (res) => {
        wx.hideloading();
        console.log(`耗时${date.now() - timestart}`);
        if (res.statuscode >= 200 && res.statuscode < 300) {
          resolve(res.data)
        } else {
          reject(res)
        }
      }
    })
  })
}

const geturl = (url) => {
  if (url.indexof('://') == -1) {
    url = baseurl + url;
  }
  return url
}

// get方法
const _get = (url, param = {}) => {
  return http({
    url,
    param
  })
}

const _post = (url, param = {}) => {
  return http({
    url,
    param,
    method: 'post'
  })
}

const _put = (url, param = {}) => {
  return http({
    url,
    param,
    method: 'put'
  })
}

const _delete = (url, param = {}) => {
  return http({
    url,
    param,
    method: 'put'
  })
}
module.exports = {
  baseurl,
  _get,
  _post,
  _put,
  _delete
}

使用

const api = require('../../utils/api.js')

// 单个请求
api.get('list').then(res => {
 console.log(res)
}).catch(e => {
 console.log(e)
})

// 一个页面多个请求
promise.all([
 api.get('list'),
 api.get(`detail/${id}`)
]).then(result => {
 console.log(result)
}).catch(e => {
 console.log(e)
})

登陆问题

做一个应用,肯定避免不了登录操作。用户的个人信息啊,相关的收藏列表等功能都需要用户登录之后才能操作。一般我们使用token做标识。

小程序并没有登录界面,使用的是 wx.login wx.login 会获取到一个 code,拿着该 code 去请求我们的后台会最后返回一个token到小程序这边,保存这个值为 token 每次请求的时候带上这个值。
一般还需要把用户的信息带上比如用户微信昵称,微信头像等,这时候就需要使用 wx.getuserinfo ,这里涉及到一个用户授权的问题

带上用户信息就够了嘛? too young too simple!我们的项目不可能只有小程序,相应的微信公众平台可能还有相应的app,我们需要把账号系统打通,让用户在我们的项目中的账户是同一个。这就需要用到微信开放平台提供的 unionid 。

登陆

//app.js
app({
 onlaunch: function () {
  console.log('app onlaunch');
  var that = this;
  // 获取商城名称
  wx.request({
   url: 'https://api.it120.cc/'+ that.globaldata.subdomain +'/config/get-value',
   data: {
    key: 'mallname'
   },
   success: function(res) {
    wx.setstoragesync('mallname', res.data.data.value);
   }
  })
  this.login();
  this.getuserinfo();
 },
 login : function () {
  var that = this;
  var token = that.globaldata.token;
  // 如果有token
  if (token) {
   // 检查token是否有效
   wx.request({
    url: 'https://api.it120.cc/' + that.globaldata.subdomain + '/user/check-token',
    data: {
     token: token
    },
    success: function (res) {
     // 如果token失效了
     if (res.data.code != 0) {
      that.globaldata.token = null;
      that.login(); // 重新登陆
     }
    }
   })
   return;
  }

  // 【1】调用微信自带登陆
  wx.login({
   success: function (res) {
    // 【2】 拿到code去访问我们的后台换取其他信息
    wx.request({
     url: 'https://api.it120.cc/'+ that.globaldata.subdomain +'/user/wxapp/login',
     data: {
      code: res.code
     },
     success: function(res) {
      // 如果说这个code失效的
      if (res.data.code == 10000) {
       // 去注册
       that.registeruser();
       return;
      }
      // 如果返回失败了
      if (res.data.code != 0) {
       // 登录错误 
       wx.hideloading();
       // 提示无法登陆
       wx.showmodal({
        title: '提示',
        content: '无法登录,请重试',
        showcancel:false
       })
       return;
      }
      
      // 【3】 如果成功后设置token到本地
      that.globaldata.token = res.data.data.token;
      // 保存用户信息
      wx.setstorage({
       key: 'token',
       data: res.data.data.token
      })
     }
    })
   }
  })
 },
 // 注册?? [这个看需求]
 registeruser: function () {
  var that = this;
  wx.login({
   success: function (res) {
    var code = res.code; // 微信登录接口返回的 code 参数,下面注册接口需要用到
    wx.getuserinfo({
     success: function (res) {
      var iv = res.iv;
      var encrypteddata = res.encrypteddata;
      // 下面开始调用注册接口
      wx.request({
       url: 'https://api.it120.cc/' + that.globaldata.subdomain +'/user/wxapp/register/complex',
       data: {code:code,encrypteddata:encrypteddata,iv:iv}, // 设置请求的 参数
       success: (res) =>{
        wx.hideloading();
        that.login();
       }
      })
     }
    })
   }
  })
 },
 // 获取用户信息
 getuserinfo:function() {
  wx.getuserinfo({
   success:(data) =>{
    this.globaldata.userinfo = data.userinfo;
    wx.setstorage({
     key: 'userinfo',
     data: data.userinfo
    })
    return this.globaldata.userinfo;
   }
  })
 },
 globaldata:{
  userinfo:null,
  subdomain:"34vu54u7vuiuvc546d",
  token: null
 }
})

授权问题

微信小程序网络请求封装示例

 getuserinfo: function () {
  // 先调用wx.getsetting 获取用户权限设置
  wx.getsetting({
   success(res) {
    console.log('1');
    if (!res.authsetting['scope.userinfo']) {
     wx.authorize({
      scope: 'scope.userinfo',
      success() {
       // 用户已经同意小程序使用录音功能,后续调用 wx.getuserinfo接口不会弹窗询问
       wx.getuserinfo({
        success: (data) => {
         this.globaldata.userinfo = data.userinfo;
         wx.setstorage({
          key: 'userinfo',
          data: data.userinfo
         })
         return this.globaldata.userinfo;
        }
       })
      }
     })
    } else {
     console.log(2);
    }
   }
  })

 },

小结

网络请求这块,算目前开发项目中必不可少的一块加油~~

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。