Voglio ottenere l' ID del gruppo di clienti corrente nel file phtml . Quando non ho effettuato l'accesso, viene restituito un gruppo di clienti di tipo generale . Come si può ottenere un output corretto?
Voglio ottenere l' ID del gruppo di clienti corrente nel file phtml . Quando non ho effettuato l'accesso, viene restituito un gruppo di clienti di tipo generale . Come si può ottenere un output corretto?
Risposte:
Magento\Customer\Model\Session $customerSession
utilizzando questa classe otterrai l'ID del gruppo di clienti corrente
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;
}
NOTA: ottieni l'ID cliente solo se il cliente ha effettuato l'accesso
puoi ottenere l'ID di gruppo seguendo il codice
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()):
is isLoggedIn check?
Per impostazione predefinita, Magento cancellerà la sessione del cliente: \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml
.
Guarda:
vendor / Magento / module-cliente / Modello / Context.php
/**
* Customer group cache context
*/
const CONTEXT_GROUP = 'customer_group';
/**
* Customer authorization cache context
*/
const CONTEXT_AUTH = 'customer_logged_in';
Possiamo controllare il cliente registrato e il gruppo di clienti:
/**
* @var \Magento\Framework\App\Http\Context $httpContext
*/
$isLogged = $this->httpContext->getValue(Context::CONTEXT_AUTH);
$customerGroupId = $this->httpContext->getValue(Context::CONTEXT_GROUP);
Inserisci queste righe di codice nel tuo blocco.
C'è un'altra buona spiegazione qui:
Prova questo per ottenere l'ID gruppo corrente e il nome sia per il cliente registrato che non registrato
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;
}
Questo può essere utile per te.
L'uso di \ Magento \ Customer \ Model \ Session potrebbe non riuscire se si utilizza la memorizzazione nella cache.
Dovresti usare meglio:
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();
}