Saya ingin memeriksa halaman saat ini adalah halaman rumah, halaman kategori, halaman produk & halaman cms di magento 2
Saya ingin memeriksa halaman saat ini adalah halaman rumah, halaman kategori, halaman produk & halaman cms di magento 2
Jawaban:
Anda dapat mencoba ini: Menyuntikkan instance dari \Magento\Framework\App\Request\Http
konstruktor kelas Anda. Jika Anda berada di controller Anda tidak perlu melakukannya. Anda sudah dapat mengaksesnya seperti ini$request = $this->getRequest()
public function __construct(
...
\Magento\Framework\App\Request\Http $request
) {
...
$this->_request = $request;
}
Maka Anda dapat memeriksa apakah beranda seperti ini:
if ($this->_request->getFullActionName() == 'cms_index_index') {
//you are on the homepage
}
if ($this->_request->getFullActionName() == 'catalog_product_view') {
//you are on the product page
}
if ($this->_request->getFullActionName() == 'catalog_category_view') {
//you are on the category page
}
$this->_request->getFullActionName()
iklan menggunakannya dalam file phtml.
Dari dalam file phtml ini berfungsi untuk saya:
if ($this->getRequest()->getFullActionName() == 'cms_index_index') {
//you are on the homepage
}
if ($this->getRequest()->getFullActionName() == 'catalog_product_view') {
//you are on the product page
}
if ($this->getRequest()->getFullActionName() == 'catalog_category_view') {
//you are on the category page
}
Coba yang ini:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$request = $objectManager->get('Magento\Framework\App\Action\Context')->getRequest();
if ($request->getFullActionName() == 'cms_index_index') {
// is homepage
}
Karena pola desain Injeksi Ketergantungan. Anda membuat modul untuk meminta sumber daya sesuai permintaan. Manajer objek menentang paradigma itu. Namun, ini berfungsi dengan baik tetapi seperti menggunakan Mage lagi - lambat.
Coba kode di bawah ini:
protected $_logo;
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Theme\Block\Html\Header\Logo $logo,
array $data = []
)
{
$this->_logo = $logo;
parent::__construct($context, $data);
}
public function isHomePage()
{
return $this->_logo->isHomePage();
}
Menggunakan Object Manager
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$logo = $objectManager->get('Magento\Theme\Block\Html\Header\Logo');
var_dump($logo->isHomePage());