3--微信小程序 请求request

本文详细介绍了微信小程序中进行网络请求的API——request的使用方法,通过实例解析了如何进行一般请求以及wx.login的登录验证过程。
摘要由CSDN通过智能技术生成

一般请求:

 	 let token = wx.getStorageSync('token')
      wx.request({
        url: app.globalData.b_info,
        method: 'POST',
        header: {
          'content-type': 'application/x-www-form-urlencoded',
          'cookie': token
        },
        data: {
          token
        },
        //成功后
      success: res => {
        let list = Array.prototype.slice.call(res.data);
        list.forEach(item => {
          let time = util.formatTimeToYmd(item.time)
          item['time'] = time
        })
        this.setData({
          jiaru: list
        })
          wx.setStorageSync('teacherinfo', res.data)
        }
      })
      //引用用{{item.time}}

wx.login

  login:function(e){
    if (app.globalData.userInfo==''){
      // console.log(app.globalData.userInfo)
      return false;
    }else{
      wx.login({
        success: res => {
          console.log(res.code)
          wx.showLoading({
            title: '正在登录中....',
          })
          wx.request({
            url: app.globalData.api_login,
            data: {
              code: res.code
            },
            success: res => {
              if (res.data.error == true) {
                wx.showToast({
                  title: res.data.message,
                  icon: 'none'
                })
                return
              } else {
                wx.showToast({
                  title: res.data.message,
                  icon: 'success'
                })
                console.log(res.data.role)
                var info = res.data.info
                app.globalData.info = res.data.info
                wx.setStorageSync('info', app.globalData.info)

                var role=res.data.role
                app.globalData.role = res.data.role
                wx.setStorageSync('role', app.globalData.role)

                var token = res.data.token
                app.globalData.token = res.data.token
                wx.setStorageSync('token', app.globalData.token)
                if(res.data.role == 'teacher'){
                  wx.redirectTo({
                      url: '/pages/teacher/index',
                    })
                }else{
                  wx.redirectTo({
                    url: '/pages/student/index',
                  })
                }
                return
              }
            }
          })
        }
      })
    }
  },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值