yii2 gii curd生成的列表怎么修改
发布网友
发布时间:2022-04-06 04:45
我来回答
共1个回答
热心网友
时间:2022-04-06 06:14
1、设置config/web.php
[php] view plain copy
$config = [ ... ];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['moles']['gii'] = 'yii\gii\Mole';
}
默认这几行代码应该就有的。
2、访问Gii
http://test.com:8080/index.php?r=gii
如果不是访问本机环境,需要配置Gii允许的IP列表:
web.php里 'db'段下加下:
[php] view plain copy
'moles'=>[
'class'=>'yii\gii\Mole',
'allowedIPs'=>['127.0.0.1','::1','192.168.0.*']
]
3、Model Generator
点击下面的Start,填写表格:
已经存在的提示是否覆盖:
4、CRUD Generator
访问:http://test.com/index.php?r=country/index
附上出处链接:http://blog.csdn.net/xundh/article/details/43031395