标签 - ThinkCMF

PHP ThinkCMF    2022-06-26 18:18:12    0    0    0

查看RestBaseController的源文件

  1. ...
  2. protected $allowedDeviceTypes = ['mobile', 'android', 'iphone', 'ipad', 'web', 'pc', 'mac', 'wxapp'];
  3. ...
  4. private function _initUser()
  5. {
  6. $token = $this->request->header('XX-Token');
  7. $deviceType = $this->request->header('XX-Device-Type');
  8. ...
  9. }
  10. ...

前端发送token和机器设备代码已写好,用户登录非常方便