Tôi đang làm việc để tạo mô-đun tùy chỉnh trong magento 2, nhưng nó không hoạt động. Bạn có thể vui lòng gợi ý cho tôi nơi tôi đã đi sai?.
Mã mô-đun của tôi:
ứng dụng / etc / config.php:
'modules' =>
array (
'Ramesh_Sample' => 1,
),
ứng dụng / mã / Ramesh / Mẫu / etc / 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="Ramesh_Sample" schema_version="2.0.0">
</module>
</config>
ứng dụng / mã / Ramesh / Mẫu / etc / frontend / Rout.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/App/etc/routes.xsd">
<router id="standard">
<route id="sample" frontName="sample">
<module name="Ramesh_Sample" />
</route>
</router>
</config>
ứng dụng / mã / Ramesh / Mẫu / Trình điều khiển / Chỉ mục / Index.php
<?php
namespace Ramesh\Sample\Controller\Index;
use Magento\Framework\App\Action\Context;
//use \Magento\Framework\View\Result\PageFactory;
class Index extends \Magento\Framework\App\Action\Action
{
private $_resultPageFactory;
public function __construct(
Context $context,
\Magento\Framework\View\Result\PageFactory $resultPageFactory
)
{
parent::__construct($context);
$this->_resultPageFactory = $resultPageFactory;
}
public function execute()
{
$result = $this->_resultPageFactory->create();
return $result;
}
}
ứng dụng / mã / Ramesh / Mẫu / Khối / Mẫu.php
namespace Magento\Sample\Block;
class Sample extends \Magento\Framework\View\Element\Template
{
}
ứng dụng / mã / Ramesh / Mẫu / lượt xem / frontend / layout / sample_index_index.xml
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<head>
<title>Hello World</title>
</head>
<body>
<referenceContainer name="content">
<block class="Sample\Ramesh\Block\Sample" name="sample" template="sample.phtml">
</block>
</referenceContainer>
</body>
</page>
ứng dụng / mã / Ramesh / Mẫu / xem / frontend / samples / sample.phtml
<?php echo 'Hi I am Magento 2'; ?>
Nhưng tôi đã nhận được lỗi sau:
a: 4: {i: 0; s: 380: "Lỗi có thể phục hồi: Đối số 2 được truyền cho Ramesh \ Sample \ Controller \ Index \ Index :: __ construc () phải là một phiên bản của Magento \ Framework \ View \ result \ PageFactory, không được đưa ra, được gọi trong var / Generation / Ramesh / Sample / Controller / Index / Index / Interceptor.php trên dòng 14 và được định nghĩa trong app / code / Ramesh / Sample / Controller / Index / Index.php trên dòng 14 "; i: 1; s: 6109: "# 0 ứng dụng / mã / Ramesh / Mẫu / Trình điều khiển / Chỉ mục / Index.php (14): Magento \ Framework \ App \ ErrorHandler-> handler (4096, 'Đối số 2 vượt qua ...', '/ var / www / html / m ...', 14, Mảng)