Câu trả lời:
Sử dụng mã dưới đây trong lớp trình điều khiển để lấy tên của trình điều khiển, mô-đun, hành động và tên tuyế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();
}
}
để lấy phtml
tập tin hoặc controller
sử dụng dưới đây
echo $controllerName = $this->getRequest()->getControllerName();
echo $actionName = $this->getRequest()->getActionName();
echo $routeName = $this->getRequest()->getRouteName();
echo $moduleName = $this->getRequest()->getModuleName();
controller:index,action:index,route:cms,module:cms
hy vọng điều này sẽ giúp ích.
Sử dụng đoạn mã dưới đây để phtml, bộ điều khiển và sự kiện trong 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();
ObjectManager
trực tiếp. Bạn nên tiêm các lớp / đối tượng cần thiết thông qua DI.
Bạn cũng có thể làm:
$this->_requestInterface->getFullActionName()
Để có được tên hành động đầy đủ
Bạn có thể nhận được những thông tin này từ đối tượng yêu cầu.
Thí dụ
Trong controller
lớp của bạn :
$routeName = $this->getRequest()->getRouteName();
$moduleName = $this->getRequest()->getModuleName();
$controllerName = $this->getRequest()->getControllerName();
$actionName = $this->getRequest()->getActionName();
Hy vọng điều này có thể giúp cho bạn.