mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
页面授权优化
This commit is contained in:
parent
1cc97ec834
commit
8ba170debe
@ -267,10 +267,10 @@ class WechatService extends Service
|
||||
$this->app->session->set("{$appid}_openid", $openid = $result['openid']);
|
||||
$this->app->session->set("{$appid}_fansinfo", $userinfo = $result['fans']);
|
||||
if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) {
|
||||
if (!empty($userinfo)) FansService::instance()->set($userinfo, $appid);
|
||||
empty($userinfo) || FansService::instance()->set($userinfo, $appid);
|
||||
return ['openid' => $openid, 'fansinfo' => $userinfo];
|
||||
}
|
||||
if ($redirect && !empty($result['url'])) {
|
||||
if ($redirect) {
|
||||
throw new HttpResponseException(redirect($result['url'], 301));
|
||||
} else {
|
||||
throw new HttpResponseException(response("location.href='{$result['url']}'"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user