Gii生成模块 Gii生成控制器 让我们看看如何生成一个模块。 步骤1 - 要生成模块,请打开模块生成界面并填写表格。 第2步 - 然后,点击“预览”按钮和“生成”。 第3步 - 我们需要激活模块。 修改 config / web.php 文件中的 模块 应用程序组件。 ** 'modules' => [ 'admin' => [ 'class' => 'app\modules\admin\Module', ], ], 第4步 - 要检查我们新生成的模块是否工作,请 在Web浏览器中输入UR http:// localhost:8080 / index.php?r = admin / default / index 。 Gii生成控制器