通过Gii来实现系统的 CRUD 操作
1、修改 config 文件夹的 main.php,激活 Gii ,如下
‘modules‘=>array(
// uncomment the following to enable the Gii tool
‘gii‘=>array(
‘class‘=>‘system.gii.GiiModule‘,
‘password‘=>‘123456‘,
// If removed, Gii defaults to localhost only. Edit carefully to taste.
‘ipFilters‘=>array(‘127.0.0.1‘,‘::1‘),
),
),
2、在浏览器输入:http://localhost/yii_pro/index.php?r=gii,输入密码:123456,即可进入gii操作界面。
3、生成 message 系统的Model、Crud操作
模型类会使我们可以通过一种直观的、面向对象的风格访问数据库。
点击 Model Generator 链接开始使用模型创建工具。
在 Model Generator 页中,在Table Name一栏输入 tbl_message ,
然后按下 Preview 按钮。一个预览表将显示在我们面前。我们可以点击表格中的链接来预览要生成的代码。
如果一切OK,我们可以按下 Generate 按钮来生成代码并将其保存在一个文件中。
模型类建好之后,我们就可以使用 Crud Generator来创建为这些模型实现CRUD操作的代码了。
在 Crud Generator 页面中,Model Class 一栏输入Message ,然后按下 Preview 按钮。
我们会看到有很多文件将被创建。按下Generate按钮来创建它们。
4、在浏览器中输入:http://localhost/yii_pro/index.php?r=message,即可查看页面预览效果