Yii 如何到达 Crud 生成器

Yii How to get to Crud Generator

需要帮助!我怎样才能在 yii 中使用 CRUD 生成器?

我刚刚创建了我的应用程序,但是当我尝试输入 localhost/myapp/index.php?r=gii 时,它说 "Unable to resolve the request gii"

有人吗?请帮我。非常感谢!

转到配置->main.php 并取消对 gii 的注释。

'modules'=>array(
         'gii'=>array(
             'class'=>'system.gii.GiiModule',
              'password'=>'Enter your password here',
              'ipFilters'=>array($_SERVER['REMOTE_ADDR']),
        ),
    ),