सत्र से ग्राहक आईडी कैसे प्राप्त करें? मैंने यह कोशिश की लेकिन काम नहीं किया।
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()
अपने नियंत्रक वर्ग में सही लौटा लेकिन मेरे ब्लॉक वर्ग में गलत है। क्यों?