Ben mevcut müşteri almak istiyorum grup kimliği içinde phtml dosyası. Hala giriş yapmadığımda, genel tip müşteri grubu iade edilir . Düzgün çıktı nasıl alınır?
Ben mevcut müşteri almak istiyorum grup kimliği içinde phtml dosyası. Hala giriş yapmadığımda, genel tip müşteri grubu iade edilir . Düzgün çıktı nasıl alınır?
Yanıtlar:
Magento\Customer\Model\Session $customerSession
bu sınıfı kullanarak mevcut müşteri grubu kimliğini alırsınız
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;
}
NOT: Müşteri kimliğini yalnızca müşteri giriş yaptığında alırsınız
kodu takip ederek grup kimliğini alabilirsiniz
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()):
groupid göstermiyor kontrol yaptınız mı ?
Varsayılan olarak, Magento müşteri oturumu silecektir: \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml
.
Bir göz at:
satıcı / Magento / modül-müşteri / Modeli / Context.php
/**
* Customer group cache context
*/
const CONTEXT_GROUP = 'customer_group';
/**
* Customer authorization cache context
*/
const CONTEXT_AUTH = 'customer_logged_in';
Giriş yapmış müşteri ve müşteri grubunu kontrol edebiliriz:
/**
* @var \Magento\Framework\App\Http\Context $httpContext
*/
$isLogged = $this->httpContext->getValue(Context::CONTEXT_AUTH);
$customerGroupId = $this->httpContext->getValue(Context::CONTEXT_GROUP);
Bu kod satırlarını bloğunuza koyun.
Burada iyi bir açıklama daha var:
Hem oturum açmış hem de oturum açmamış müşteri için mevcut müşteri grubu kimliğini ve adını almak için bunu deneyin
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;
}
Bu sizin için yararlı olabilir.
Önbelleğe alma kullanırsanız \ Magento \ Customer \ Model \ Session kullanılır.
Kullanmanız daha iyi olur:
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();
}