Saya ingin mendapatkan id grup pelanggan saat ini dalam file phtml . Ketika saya masih belum login itu adalah tipe umum kelompok pelanggan . Bagaimana bisa mendapatkan output yang tepat?
Saya ingin mendapatkan id grup pelanggan saat ini dalam file phtml . Ketika saya masih belum login itu adalah tipe umum kelompok pelanggan . Bagaimana bisa mendapatkan output yang tepat?
Jawaban:
Magento\Customer\Model\Session $customerSession
menggunakan kelas ini Anda akan mendapatkan id grup pelanggan saat ini
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;
}
CATATAN: Anda hanya mendapatkan id pelanggan jika pelanggan login
Anda bisa mendapatkan ID grup dengan mengikuti kode
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()):
sudahLoggedIn cek?
Secara default, Magento akan menghapus sesi pelanggan: \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml
.
Lihatlah:
vendor / magento / modul-pelanggan / Model / Context.php
/**
* Customer group cache context
*/
const CONTEXT_GROUP = 'customer_group';
/**
* Customer authorization cache context
*/
const CONTEXT_AUTH = 'customer_logged_in';
Kami dapat memeriksa pelanggan yang masuk dan grup pelanggan:
/**
* @var \Magento\Framework\App\Http\Context $httpContext
*/
$isLogged = $this->httpContext->getValue(Context::CONTEXT_AUTH);
$customerGroupId = $this->httpContext->getValue(Context::CONTEXT_GROUP);
Letakkan baris kode ini di blok Anda.
Ada penjelasan bagus lainnya di sini:
Coba ini untuk mendapatkan ID dan nama grup pelanggan saat ini untuk pelanggan yang sudah masuk dan tidak masuk
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;
}
Semoga bermanfaat bagi Anda.
Menggunakan \ Magento \ Pelanggan \ Model \ Sesi mungkin gagal jika Anda menggunakan caching.
Anda sebaiknya menggunakan:
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();
}