|
@@ -91,8 +91,9 @@ class Redis extends Driver
|
|
|
|
|
|
if ($data['expiretime'] && $data['expiretime'] <= time() && $expirationException) {
|
|
|
// token过期-触发前端刷新token
|
|
|
- $response = Response::create(['code' => 101, 'msg' => __('Token expiration'), 'data' => $data], 'json');
|
|
|
- throw new HttpResponseException($response);
|
|
|
+ throw new \Exception("token过期",101);
|
|
|
+// $response = Response::create(['code' => 101, 'msg' => __('Token expiration'), 'data' => $data], 'json');
|
|
|
+// throw new HttpResponseException($response);
|
|
|
}
|
|
|
return $data;
|
|
|
}
|