我正在magento 2中创建自定义模块,但无法正常工作。你能建议我哪里出问题了吗?
我的模块代码:
app / etc / config.php:
'modules' =>
array (
'Ramesh_Sample' => 1,
),
app / code / Ramesh / Sample / 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>
app / code / Ramesh / Sample / etc / frontend / routes.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>
应用程序/代码/ Ramesh /示例/控制器/Index/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;
}
}
应用程序/代码/ Ramesh /示例/块/Sample.php
namespace Magento\Sample\Block;
class Sample extends \Magento\Framework\View\Element\Template
{
}
应用程序/代码/ Ramesh /样本/视图/前端/布局/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>
app / code / Ramesh / Sample / view / frontend / templates / sample.phtml
<?php echo 'Hi I am Magento 2'; ?>
但我收到以下错误:
a:4:{i:0; s:380:“可恢复的错误:传递给Ramesh \ Sample \ Controller \ Index \ Index :: __ construct()的参数2必须是Magento \ Framework \ View \ Result \ PageFactory的实例,没有给出,在第14行的var / generation / Ramesh / Sample / Controller / Index / Index / Interceptor.php中调用,并在第14行的app / code / Ramesh / Sample / Controller / Index / Index.php中定义“; i: 1; s:6109:“#0应用程序/代码/ Ramesh /示例/控制器/Index/Index.php(14):Magento\Framework\App\ErrorHandler->handler(4096,“参数2通过...”, '/var/www/html/m...',14,数组)