我不得不问如何将登录用户的名称获取到 Nette 组件(SomethingControl.php)中。显然我不能这样做:
$identity = $this->getUser()->getIdentity();
if ($identity) $this->template->username = $identity->getData()['username'];
所以我试过这个:
$this->template->username = $this->user
但这也不起作用。
你不能像这样得到用户,因为UI\Control
它不是UI\Presenter的后代。但是Nette\Security\User
服务是否在 DIC 中注册,所以你可以像这样得到它:
class SomethingControl extends \Nette\Application\UI\Control
{
/**
* @var \Nette\Security\User
*/
private $user;
public function __construct(\Nette\Security\User $user)
{
parent::__construct();
$this->user = $user;
}
public function render()
{
bdump($this->user); // getIdentity and username
}
}
只需确保您使用的是组件工厂- 意味着不要使用new
操作符在演示者中创建您的组件。