Commit 08601d36 authored by hujun's avatar hujun

去除 log Undefined property: stdClass::$userNick

parent 27ccbf0d
...@@ -75,7 +75,7 @@ class Basic extends Controller ...@@ -75,7 +75,7 @@ class Basic extends Controller
$result = $jwt->decode($this->authToken, config('jwt_key'), array( 'HS256' )); //解码token $result = $jwt->decode($this->authToken, config('jwt_key'), array( 'HS256' )); //解码token
$this->userId = $result->data->id; $this->userId = $result->data->id;
$this->phone = $result->data->phone; $this->phone = $result->data->phone;
$this->userNick = $result->data->userNick; $this->userNick = isset($result->data->userNick) ? $result->data->userNick : "";
$this->timeStamp_ = $result->timeStamp_; $this->timeStamp_ = $result->timeStamp_;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment