yii2 gii curd生成的列表怎么修改
1个回答
2016-07-04 · 百度知道合伙人官方认证企业
兄弟连教育
兄弟连教育成立于2006年,11年来专注IT职业教育,是国内专业的IT技术培训学校。2016年成功挂牌新三板(股票代码:839467)市值过亿。开设专注程序员培训专注php、Java、UI、云计算、Python、HTML5、
向TA提问
关注
展开全部
1、设置config/web.php
[php] view plain copy
$config = [ ... ];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}
默认这几行代码应该就有的。
2、访问Gii
http://test.com:8080/index.php?r=gii
如果不是访问本机环境,需要配置Gii允许的IP列表:
web.php里 'db'段下加下:
[php] view plain copy
'modules'=>[
'class'=>'yii\gii\Module',
'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
[php] view plain copy
$config = [ ... ];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}
默认这几行代码应该就有的。
2、访问Gii
http://test.com:8080/index.php?r=gii
如果不是访问本机环境,需要配置Gii允许的IP列表:
web.php里 'db'段下加下:
[php] view plain copy
'modules'=>[
'class'=>'yii\gii\Module',
'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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询