【详解】Yii创建yii第一个应用和使用GII生成增删改查功能

jerry Yii 2015年08月11日 收藏

打开CMD进入目录

新建webapp,在framework目录下执行:

  1. yiic webapp ..\test

然后输入yes即可。

搜狗截图15年08月11日2133_3.png

在protected\config\main.php中,修改数据库连接 ‘db’

因为使用mysql数据库,所以修改如下:

  1. /* 'db'=>array(
  2. 'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
  3. ),*/
  4. // uncomment the following to use a MySQL database
  5.  
  6. 'db'=>array(
  7. 'connectionString' => 'mysql:host=localhost;dbname=dmpushtest',
  8. 'emulatePrepare' => true,
  9. 'username' => 'root',
  10. 'password' => '',
  11. 'charset' => 'utf8',
  12. ),


mysql:host=localhost  ---为本地数据库
dbname=dmpushtest  ---为数据库名
username -- 数据库登陆的用户名
password -- 数据库登陆的密码


在dmpushtest库中建表

  1. CREATE TABLE IF NOT EXISTS `user` (
  2. `id` int(10) NOT NULL auto_increment,
  3. `username` varchar(128) NOT NULL,
  4. `password` varchar(128) NOT NULL,
  5. `email` varchar(128) NOT NULL,
  6. PRIMARY KEY (`id`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;

配置Gii,需要编辑文件 WebRoot/testdrive/protected/main.php

  1.     'modules'=>array(
  2.         // uncomment the following to enable the Gii tool
  3.         
  4.         'gii'=>array(
  5.             'class'=>'system.gii.GiiModule',
  6.             'password'=>'*********',
  7.             // If removed, Gii defaults to localhost only. Edit carefully to taste.
  8.             'ipFilters'=>array('127.0.0.1','::1'),
  9.         ),
  10.     ),


password --设置gii登陆密码

提示输入密码,登陆

  1. http://127.0.0.1/mimscmgr/index.php?r=gii

进入ModelGenerator,如果提示超时。

修改

  1. php.ini:max_execution_time = 300


再次进入Model Generator --> preview -->generate,生成User模型

搜狗截图15年08月11日2142_6.png

一个名为 User.php 将生成到protected/models 目录中,网页也就和数据库表关联上。

进入Crud Generator --> preview -->generate,生成CRUD 代码

搜狗截图15年08月11日2142_7.png
至此CRUD 代码生成完成。
查看效果:

  1. http://127.0.0.1/mimscmgr/index.php?r=user