CakePHP 3.x – View中的AuthComponent :: user()

前端之家收集整理的这篇文章主要介绍了CakePHP 3.x – View中的AuthComponent :: user()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Cake PHP 2.x中你可以做到
AuthComponent::user()

在View中从Auth组件获取数据.在CakePHP 3.0beta3中,它抛出:

"Error: Class 'AuthComponent' not found"

是否有一种从View中的AuthComponent获取数据的简单方法

蛋糕3.5

在AppController中:

public function beforeRender(Event $event) {
    ....

    $this->set('Auth',$this->Auth);
}

在.ctp模板中:

<?PHP if (!$Auth->user()) { ?>
    <a class="login" href="<?PHP echo $this->Url->build($Auth->getConfig('loginAction')); ?>">Login</a>
<?PHP } else { ?>
    <div class="name"><?PHP echo h($Auth->user('name')); ?></div>
<?PHP } ?>
原文链接:https://www.f2er.com/php/136148.html

猜你在找的PHP相关文章