小程序校验机制

openid与token放入缓存中

wx.login({
      success (res) {
        console.log(res.code)
        if (res.code) {
          wx.request({
            url: '',
            data:{code:res.code},
            header:{
            //从缓存中获取token
              'token': wx.getStorageSync('token')
            },
            succ
            success(res){
              console.log(res)
              //把openid与token放入缓存中
              wx.setStorageSync('openid', res.data.openid)
              wx.setStorageSync('token', res.data.token)
            }
          })
        } else {
          console.log('登录失败!' + res.errMsg)
        }
      }
    })

轮播图


      
        
          
            
          
        
      
    

获取之前存的token

wx.request({
      url: 'http://www.tp.com/admin/logins/slideshow',
      header:{
        'token':wx.getStorageSync('token')
      },
      success (res) {
        a.setData({img:res.data.data})
      }
    })
public function slideshow()
    {
        //获取请求header中的token
        $token = $_SERVER['HTTP_TOKEN'];
        if($this->checkToken($token)){//调用本类方法
            $data = file::select()->toArray();
            return json(['data'=>$data,'msg'=>'','code'=>0]);
        }
    }

中间件的位置

小程序校验机制_第1张图片

你可能感兴趣的:(小程序校验机制)