Hãy thử điều này hoặc cách khác gửi mã của bạn sau đó chúng tôi sẽ đề nghị bạn đã sai ở đâu.
Chặn tập tin
<?php
namespace Learning\SmartSearch\Block;
class SmartSearch extends \Magento\Framework\View\Element\Template
{
public function getTitle()
{
return "Smart Search";
}
}
vv / module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
<module name="Learning_SmartSearch" setup_version="1.0.0">
</module>
</config>
xem / layout / cms_index_index.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="Learning\SmartSearch\Block\SmartSearch" template="Learning_SmartSearch::html/cms.phtml"/>
</referenceContainer>
</body>
</page>
xem / mẫu / html / cms.phtml
<h1><?php echo $block->getTitle(); ?></h1>
sau khi tạo bộ đệm tuôn ra.
Tôi hy vọng điều này sẽ giúp bạn. Nếu bạn không nhận được kết quả cho tôi biết.