2. Magento: Kontrol cihazı, modül, işlem ve yönlendirici adını nasıl elde edersiniz?


Yanıtlar:


33

Denetleyici, modül, işlem ve rota adını almak için denetleyici sınıfında aşağıdaki kodu kullanın:

<?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();
    }
}

hi @ Manashvi, kontrol ünitesini ve ismimizi sevk irsaliyesinden alabilir miyiz?
jafar pinjar

14

phtmldosya almak veya controlleraşağıda kullanmak

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

Bir gözlemci ayarlamak için ana sayfa denetleyicisi eylemini nasıl alabilirim?
Supriya Mishra

Bu kodu test ederseniz, bunun ana sayfa için controller:index,action:index,route:cms,module:cmsçıkacağını umarız ki bu yardımcı olacaktır.
Qaisar Satti

@QaisarSatti, yönlendirme URL'sinden denetleyici ve işlem adı alabilir miyiz? $ this-> redirect-> getRefererUrl ();
jafar pinjar 11:18

5

Magento 2'deki phtml, kontrolör ve olayları kod kod parçacıklarını kullanarak kullanın

$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();

3
ObjectManagerDirekt olarak somutlaştırmamalısın . Gerekli sınıfları / nesneleri DI ile enjekte etmeniz gerekir.
7

4

Ayrıca şunları da yapabilirsiniz:

$this->_requestInterface->getFullActionName()

Tam eylem adını almak için


1

Bu bilgileri istek nesnesinden alabilirsiniz.

Örnek

Senin içinde controllersınıfa:

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

Umarım bu yardımcı olacak.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.