Я хочу получить текущий идентификатор группы клиентов в файле phtml . Когда я еще не вошел в систему, это возвращает группу клиентов общего типа . Как получить правильный вывод?
Я хочу получить текущий идентификатор группы клиентов в файле phtml . Когда я еще не вошел в систему, это возвращает группу клиентов общего типа . Как получить правильный вывод?
Ответы:
Magento\Customer\Model\Session $customerSession
используя этот класс, вы получите текущий идентификатор группы клиентов
protected $_customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
) {
$this->_customerSession = $customerSession;
}
public function getGroupId(){
if($this->_customerSession->isLoggedIn()):
echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
endif;
}
ПРИМЕЧАНИЕ. Вы получаете идентификатор клиента только в том случае, если клиент вошел в систему.
Вы можете получить идентификатор группы, используя следующий код
protected $_customerSession;
public function __construct(
....
\Magento\Customer\Model\Session $customerSession,
....
) {
$this->_customerSession = $customerSession;
}
public function getGroupId(){
if($this->_customerSession->isLoggedIn()):
echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
endif;
}
if($this->_customerSession->isLoggedIn()):
проверяли isLoggedIn?
По умолчанию, Magento очистит сессию клиента: \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml
.
Взглянем:
продавец / Magento / модуль-клиент / модель / Context.php
/**
* Customer group cache context
*/
const CONTEXT_GROUP = 'customer_group';
/**
* Customer authorization cache context
*/
const CONTEXT_AUTH = 'customer_logged_in';
Мы можем проверить вошедших в систему клиентов и группы клиентов:
/**
* @var \Magento\Framework\App\Http\Context $httpContext
*/
$isLogged = $this->httpContext->getValue(Context::CONTEXT_AUTH);
$customerGroupId = $this->httpContext->getValue(Context::CONTEXT_GROUP);
Поместите эти строки кода в свой блок.
Здесь есть еще одно хорошее объяснение:
Попробуйте это, чтобы получить текущий идентификатор группы клиентов и имя для зарегистрированных и не вошедших клиентов
protected $_customerSession;
protected $_customerGroupCollection;
public function __construct(
....
\Magento\Customer\Model\Session $customerSession,
\Magento\Customer\Model\Group $customerGroupCollection,
....
) {
$this->_customerSession = $customerSession;
$this->_customerGroupCollection = $customerGroupCollection;
}
public function getCustomerGroup()
{
echo $currentGroupId = $this->_customerSession->getCustomer()->getGroupId(); //Get current customer group ID
$collection = $this->_customerGroupCollection->load($currentGroupId);
echo $collection->getCustomerGroupCode();//Get current customer group name
}
protected $_customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
) {
$this->_customerSession = $customerSession;
}
public function getGroupId(){
if($this->_customerSession->isLoggedIn()):
echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
endif;
}
Это может быть полезно для вас.
Использование \ Magento \ Customer \ Model \ Session может привести к сбою, если вы используете кэширование.
Вы должны лучше использовать:
private $sessionProxy;
public function __construct(
use Magento\Customer\Model\Session\Proxy $sessionProxy,
) {
$this->sessionProxy= $sessionProxy;
}
// may return groupId or \Magento\Customer\Model\GroupManagement::NOT_LOGGED_IN_ID
public function getGroupId(){
$this->sessionProxy->getCustomer()->getGroupId();
}