Magento 2: Bagaimana cara mendapatkan nama pengontrol, modul, aksi dan router?

Jawaban:

33

Gunakan kode di bawah ini di kelas controller untuk mendapatkan controller, module, action, dan nama rute:

<?php
    namespace Custom\Module\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    protected $request;

    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Framework\App\Request\Http $request
    ){
        parent::__construct($context);
        $this->request = $request;
    }

    public function execute()
    {
        $moduleName = $this->request->getModuleName();
        $controller = $this->request->getControllerName();
        $action     = $this->request->getActionName();
        $route      = $this->request->getRouteName();

        echo $moduleName."<br/>";
        echo $controller."<br/>";
        echo $action."<br/>";
        echo $route."<br/>";

        $this->_view->loadLayout();
        $this->_view->renderLayout();
    }
}
Manashvi Birla
sumber
hai @ Manashvi, bisakah kita mendapatkan kontroler dan nama tindakan dari referralUrl?
jafar pinjar
14

untuk mendapatkan phtmlfile atau controllergunakan di bawah ini

echo $controllerName = $this->getRequest()->getControllerName();
echo $actionName = $this->getRequest()->getActionName();
echo $routeName = $this->getRequest()->getRouteName();
echo $moduleName = $this->getRequest()->getModuleName(); 
Qaisar Satti
sumber
Bagaimana saya bisa mendapatkan tindakan pengontrol laman beranda untuk menetapkan pengamat?
supriya mishra
jika Anda menguji kode ini akan menampilkan homepage controller:index,action:index,route:cms,module:cmsberharap ini akan membantu.
Qaisar Satti
@QaisarSatti, bisakah kita mendapatkan kontroler dan nama tindakan dari url rujukan? $ this-> redirect-> getRefererUrl ();
jafar pinjar
5

Gunakan cuplikan kode di bawah ini untuk phtml, controller, dan acara di magento 2

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$requestInterface = $objectManager->get('Magento\Framework\App\RequestInterface');

$routeName      = $requestInterface->getRouteName();
$moduleName     = $requestInterface->getModuleName(); 
$controllerName = $requestInterface->getControllerName(); 
$actionName     = $requestInterface->getActionName();
Arun Prabhu
sumber
3
Anda tidak harus instantiate ObjectManagersecara langsung. Anda harus menyuntikkan kelas / objek yang dibutuhkan melalui DI.
7ochem
4

Anda juga dapat melakukan:

$this->_requestInterface->getFullActionName()

Untuk mendapatkan nama tindakan lengkap

Maxime Huran
sumber
1

Anda dapat memperoleh informasi ini dari objek permintaan.

Contoh

Di controllerkelas Anda :

$routeName        = $this->getRequest()->getRouteName();
$moduleName       = $this->getRequest()->getModuleName();
$controllerName   = $this->getRequest()->getControllerName();
$actionName       = $this->getRequest()->getActionName();

Saya harap ini akan membantu.

Shyam
sumber