减少视图文件的办法 [ 新手入门 ]
通过GII生成的视图文件 update.php create.php _form.php,简单情况下可以通过一个判断合并成一个_form文件 把
$this->render('create',array('model'=>$model,));
$this->render('update',array('model'=>$model,));
改成
$this->render('_form',array('model'=>$model,));
然后在_form文件里判断一下
<?php if($model->isNewRecord==1):?>
<h2 style='text-align: center;color:red;'>您正在新增记录</h2>
<?php else:?>
<h2 style='text-align: center;color:red;'>您正在修改记录</h2>
<?php endif;?>
.....
webyjh
注册时间:2011-12-12
最后登录:2016-10-06
在线时长:1小时45分
最后登录:2016-10-06
在线时长:1小时45分
- 粉丝2
- 金钱1090
- 威望0
- 积分1100