Как получить идентификатор клиента из сессии? Я пытался это, но не работает.
protected $_customerBonusPointFactory;
protected $_customerSession;
public function __construct(Session $customerSession, \Magento\Framework\View\Element\Template\Context $context) {
$this->_customerSession = $customerSession;
parent::__construct($context);
}
public function _prepareLayout() {
var_dump($this->_customerSession->getCustomer()->getId());
exit();
return parent::_prepareLayout();
}
$this->session->isLoggedIn()
возвращают true в моем классе контроллера, но возвращают false в моем классе блока. Почему?
cacheable=false
см. Magento 2 - Получить идентификатор клиента из сеанса в классе блока