我正在尝试将我的.phtml文件加载到观察器内的模板文件夹中,但出现此错误
无效的模板文件:'VENDOR_MYModule :: Category / index.phtml'在模块中:'VENDOR_MYModule'块的名称:'category_0'
这是我文件的结构
app
+ code
+ VENDOR
+ MYModule
+ Block
- Category.php
+ Controller
+ Category
- Index.php
+ etc
+ frontend
- routes.xml
+ Observer
- CategoryObserver.php
+ view
+ frontend
+ layout
- header_category_index.xml
+ templates
+ category
- index.phtml
现在我的Block/Category.php
的内容在下面
<?php
namespace VENDOR\MYModule\Block;
class Category extends \Magento\Framework\View\Element\Template
{
public function __construct(
\Magento\Backend\Block\Template\Context $context,
array $data = []
){
parent::__construct($context, $data);
}
}
我的Controller/Category/Index.php
的内容在下面
<?php
namespace VENDOR\MYModule\Controller\Category;
class Index extends \Magento\Framework\App\Action\Action
{
protected $_pageFactory;
public function __construct(
\Magento\Framework\App\Action\Context $context,
\Magento\Framework\View\Result\PageFactory $pageFactory
)
{
$this->_pageFactory = $pageFactory;
return parent::__construct($context);
}
public function execute()
{
return $this->_pageFactory->create();
}
}
layout/header_category_index.xml
的内容在下面
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<referenceContainer name="content">
<block class="VENDOR\MYModule\Block\Category" name="category_items" template="VENDOR_MYModule::category/index.phtml" />
</referenceContainer>
</page>
我的.phtml
的内容只是一个简单的<h1>Hello world</h1>
。现在,在我的Observer
中,我正在尝试加载此.phtml
文件,但无法加载并出现错误。我的观察者Observer\CategoryObserver
的内容如下
public function execute(\Magento\Framework\Event\Observer $observer)
{
$layout = $this->_layout->create();
$block = $layout->createBlock('VENDOR\MYModule\Block\Category')->setTemplate('VENDOR_MYModule::Category/index.phtml')->toHtml();
$this->_logger->debug("[DEBUG]::" , [$block]);
}
这是我的events.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="catalog_category_save_after">
<observer name="category-edit" instance="VENDOR\MYModule\Observer\CategoryObserver" />
</event>
</config>
但是我遇到了如上所述的错误。关于如何将该.phtml文件加载到观察者的任何想法吗?我打算将此.phtml文件的内容写入.txt文件。但是由于尝试输出它而无法继续,但仍然出现错误
更新:
使用前端控制器/动作访问和成功加载的块尝试了我的代码。现在,我认为在Admin部分或Observer中检索.phtml时,还有另一种方法或实现。另请注意,当我尝试编辑/保存目录->类别时,将触发观察者。
答案 0 :(得分:0)
能否请您检查一下是否在观察员中将以下类称为$ layout:
\ Magento \ Framework \ View \ LayoutFactory $ layoutFactory
此外,您需要设置响应标头和正文,而不是返回html。
protected $_layoutFactory;
public function __construct(\Magento\Framework\View\LayoutFactory $layoutFactory) {
$this->_layoutFactory = $layoutFactory;
}
public function execute(\Magento\Framework\Event\Observer $observer)
{
$layout = $this->_layoutFactory->create();
$block = $layout->createBlock('VENDOR\MYModule\Block\Category')->setTemplate('VENDOR_MYModule::Category/index.phtml')->toHtml();
$response = $observer->getEvent()->getData('response');
$response->setHeader('Content-Type','text/html')->setBody($block->toHtml());
return;
}
希望这对您有帮助!