Як отримати ідентифікатор клієнта з сеансу? Я спробував це, але не вийшло.
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()
повернення справжнє в моєму класі контролера, але повернення помилкове в моєму блоковому класі. Чому?
cacheable=false
див. Magento 2 - Отримайте ідентифікатор клієнта з сеансу в блоковому класі