php 在CMS页面调用phtml文件不工作Magento2

siotufzp  于 2023-03-21  发布在  PHP
关注(0)|答案(1)|浏览(176)

我正在构建一个模块,我需要在CMS页面中调用我的视图文件,该文件位于app\code\Eecom\Atc\view\frontend\templates\atc\index.phtml
在CMS中,我将此文件命名为:

{{block class="Magento\Framework\View\Element\Template" 
template="atc/index.phtml" }}

我也试过:

{{block class="Magento\Framework\View\Element\Template" template="Eecom_Atc::atc/ndex.phtml"}}

但两者都不起作用,我错在哪里

gkl3eglg

gkl3eglg1#

下面的代码是工作:

{{block class="Magento\Framework\View\Element\Template" template="Eecom_Atc::atc/ndex.phtml"}}

问题在于该高速缓存刷新。

相关问题