为什么80%的码农都做不了架构师?>>>   

自版本 1.1.2 起, Yii 装备了基于 Web 界面的代码生成工具Gii。 它取代了之前的命令行端的代码生成工具 yiic shell。 在这部分,我们将讲解如何使用 Gii 以及如何扩展 Gii 以增加我们的开发成果。

1. 使用 Gii

Gii 是以模块的方式实现的,它必须在一个已存在的 Yii 应用程序中使用。要使用 Gii,我们首先更改应用程序的配置如下:

return array(......'modules'=>array('gii'=>array('class'=>'system.gii.GiiModule','password'=>'在这里填写密码',// 'ipFilters'=>array(...IP 列表...),// 'newFileMode'=>0666,// 'newDirMode'=>0777,),),
);

在上面,我们声明了一个名为 gii 的模块,它的类是 GiiModule。我们也为这个模块设置了一个密码,我们访问 Gii 时会有一个输入框要求填写这个密码。

出于安全考虑,默认情况下只允许本机访问 Gii。若允许其他可信赖的机器访问它,我们需要如上所示配置GiiModule::ipFilters 属性。

因为 Gii 会生成并保存新文件到应用程序中,我们需要确保 Web 服务器进程有权限这样做。上面的GiiModule::newFileMode 和 GiiModule::newDirMode 属性控制如何生成新文件和新目录。

注意: Gii 主要用作一个开发工具。因此,应当只在开发机器上安装它。因为它可以在应用程序中生成新的 PHP 文件,我们应当对安全问题足够重视(例如设置密码,IP 过滤)。

现在可以通过 URL http://hostname/path/to/index.php?r=gii 访问 Gii 了。这里我们假设http://hostname/path/to/index.php 是访问 Yii 应用程序的 URL。

若 Yii 应用程序使用 path 格式的 URL (查看 URL management),我们可以通过 URL http://hostname/path/to/index.php/gii 访问 Gii。 我们可能需要增加如下 URL 规则到已有的 URL 规则的前面:

'components'=>array(......'urlManager'=>array('urlFormat'=>'path','rules'=>array('gii'=>'gii','gii/<controller:\w+>'=>'gii/<controller>','gii/<controller:\w+>/<action:\w+>'=>'gii/<controller>/<action>',...已有的规则...),),
)

Gii 有一些默认的代码生成器。每个代码生成器负责生成特定类型的代码。例如 controller 生成器生成一个 controller 类以及一些 action view 脚本; model 生成器为指定的数据表生成一个 ActiveRecord 类。

使用一个生成器的基本流程如下:

  1. 进入生成器页面;

  2. 填写指定代码生成参数的输入框。例如,使用 Module Generator 创建一个新模块,你需要指定 module ID;

  3. 点击 Preview 按钮预览即将生成的代码。你将看到一个表格中列出了将要生成的文件列表。你可以点击其中任何一个文件来预览代码;

  4. 点击 Generate 按钮生成这些代码文件;

  5. 查看代码生成日志。

2. 扩展 Gii

虽然默认的 Gii 代码生成器可以生成非常强大的代码,然而我们经常想定制它们或者创建一个新的来适应我们的口味和需求。例如,我们想让生成的代码是我们喜欢的风格,或者想让代码支持多种语言。所有这些在 Gii 中都可非常容易地实现。

可以 2 种方式扩展 Gii:定制已存在的代码生成器的代码模板,以及编写新的代码生成器。

代码生成器的架构

一个代码生成器存储在一个目录中,这个目录的名字被认为是生成器的名字。目录通常由如下内容组成:

model/                       the model generator root folderModelCode.php             the code model used to generate codeModelGenerator.php        the code generation controllerviews/                    containing view scripts for the generatorindex.php              the default view scripttemplates/                containing code template setsdefault/               the 'default' code template setmodel.php           the code template for generating model class code

生成器搜索路径

Gii 在GiiModule::generatorPaths 属性指定的目录中查找可用的生成器。 当需要定制时,我们可以在应用程序的配置文件中做如下配置,

return array('modules'=>array('gii'=>array('class'=>'system.gii.GiiModule','generatorPaths'=>array('application.gii',   // a path alias),),),
);

上面的配置告诉 Gii 在别名是 application.gii 的目录中寻找生成器,以及默认的位置system.gii.generators

在不同的搜索路径有同名的生成器也是可以的。这种情况下,在 GiiModule::generatorPaths 指定目录中先出现的生成器有优先权。

定制代码模板

这是扩展 Gii 最容易最常用的方式。我们使用一个例子来介绍如何定制代码模板。假设我们想要定制由 model 生成器生成的代码。

我们首先创建一个名为 protected/gii/model/templates/compact 的目录。这里的 model 意味着我们将要override 默认的 model 生成器。 templates/compact 意味着我们将增加一个新的代码模板集名为 compact

然后我们在应用程序配置里把 application.gii 增加到 GiiModule::generatorPaths 。如上所示。

现在打开 model 代码生成器页面。点击 Code Template 输入框。我们应当看到一个下拉列表,这个列表包含了我们新建的模板目录 compact。可是,若我们选择此模板生成代码,我们将看到错误。这是因为我们还没有在新的 compact 模板集中放入任何实际的代码模板文件。

复制文件 framework/gii/generators/model/templates/default/model.php 到protected/gii/model/templates/compact。若我们再次尝试以 compact 模板生成,我们会成功。但是,生成的代码和以 default 模板集生成的代码没什么不同。

现在是时候做点真正的工作了。打开文件 protected/gii/model/templates/compact/model.php 以编辑它。记得这个文件将作为类似一个视图文件被使用,意味着它可以包含 PHP 表达式和语句。让我们更改模板以便生成的代码里 attributeLabels() 方法使用 Yii::t() 来翻译属性标签:

public function attributeLabels()
{return array(
<?php foreach($labels as $name=>$label): ?><?php echo "'$name' => Yii::t('application', '$label'),\n"; ?>
<?php endforeach; ?>);
}

在每个代码模板中,我们可以访问一些预定义的变量,例如上面例子中的 $labels。这些变量由对应的代码生成器提供。不同的代码生成器可能在他们的代码模板中提供不同的变量。请认真阅读默认代码模板中的描述。

创建新的生成器

In this sub-section, we show how to create a new generator that can generate a new widget class.

We first create a directory named protected/gii/widget. Under this directory, we will create the following files:

  • WidgetGenerator.php: contains the WidgetGenerator controller class. This is the entry point of the widget generator.

  • WidgetCode.php: contains the WidgetCode model class. This class has the main logic for code generation.

  • views/index.php: the view script showing the code generator input form.

  • templates/default/widget.php: the default code template for generating a widget class file.

Creating WidgetGenerator.php

The WidgetGenerator.php file is extremely simple. It only contains the following code:

class WidgetGenerator extends CCodeGenerator
{public $codeModel='application.gii.widget.WidgetCode';
}

In the above code, we specify that the generator will use the model class whose path alias isapplication.gii.widget.WidgetCode. The WidgetGenerator class extends from CCodeGenerator which implements a lot of functionalities, including the controller actions needed to coordinate the code generation process.

Creating WidgetCode.php

The WidgetCode.php file contains the WidgetCode model class that has the main logic for generating a widget class based on the user input. In this example, we assume that the only input we want from the user is the widget class name. Our WidgetCode looks like the following:

class WidgetCode extends CCodeModel
{public $className;public function rules(){return array_merge(parent::rules(), array(array('className', 'required'),array('className', 'match', 'pattern'=>'/^\w+$/'),));}public function attributeLabels(){return array_merge(parent::attributeLabels(), array('className'=>'Widget Class Name',));}public function prepare(){$path=Yii::getPathOfAlias('application.components.' . $this->className) . '.php';$code=$this->render($this->templatepath.'/widget.php');$this->files[]=new CCodeFile($path, $code);}
}

The WidgetCode class extends from CCodeModel. Like a normal model class, in this class we can declarerules() and attributeLabels() to validate user inputs and provide attribute labels, respectively. Note that because the base class CCodeModel already defines some rules and attribute labels, we should merge them with our new rules and labels here.

The prepare() method prepares the code to be generated. Its main task is to prepare a list of CCodeFileobjects, each of which represent a code file being generated. In our example, we only need to create oneCCodeFile object that represents the widget class file being generated. The new widget class will be generated under the protected/components directory. We call CCodeFile::render method to generate the actual code. This method includes the code template as a PHP script and returns the echoed content as the generated code.

Creating views/index.php

Having the controller (WidgetGenerator) and the model (WidgetCode), it is time for us to create the viewviews/index.php.

<h1>Widget Generator</h1><?php $form=$this->beginWidget('CCodeForm', array('model'=>$model)); ?><div class="row"><?php echo $form->labelEx($model,'className'); ?><?php echo $form->textField($model,'className',array('size'=>65)); ?><div class="tooltip">Widget class name must only contain word characters.</div><?php echo $form->error($model,'className'); ?></div><?php $this->endWidget(); ?>

In the above, we mainly display a form using the CCodeForm widget. In this form, we display the field to collect the input for the className attribute in WidgetCode.

When creating the form, we can exploit two nice features provided by the CCodeForm widget. One is about input tooltips. The other is about sticky inputs.

If you have tried any default code generator, you will notice that when setting focus in one input field, a nice tooltip will show up next to the field. This can easily achieved here by writing next to the input field a div whose CSS class is tooltip.

For some input fields, we may want to remember their last valid values so that the user can save the trouble of re-entering them each time they use the generator to generate code. An example is the input field collecting the controller base class name default controller generator. These sticky fields are initially displayed as highlighted static text. If we click on them, they will turn into input fields to take user inputs.

In order to declare an input field to be sticky, we need to do two things.

First, we need to declare a sticky validation rule for the corresponding model attribute. For example, the default controller generator has the following rule to declare that baseClass and actions attributes are sticky:

public function rules()
{return array_merge(parent::rules(), array(......array('baseClass, actions', 'sticky'),));
}

Second, we need to add a CSS class named sticky to the container div of the input field in the view, like the following:

<div class="row sticky">...input field here...
</div>

Creating templates/default/widget.php

Finally, we create the code template templates/default/widget.php. As we described earlier, this is used like a view script that can contain PHP expressions and statements. In a code template, we can always access the $this variable which refers to the code model object. In our example, $this refers to the WidgetModelobject. We can thus get the user-entered widget class name via $this->className.

<?php echo '<?php'; ?>class <?php echo $this->className; ?> extends CWidget
{public function run(){}
}

This concludes the creation of a new code generator. We can access this code generator immediately via the URL http://hostname/path/to/index.php?r=gii/widget.

转载于:https://my.oschina.net/tlkt/blog/210557

Yii框架官方指南系列41——专题:自动代码生成相关推荐

  1. Yii框架官方指南系列43——专题:URL(创建、路由、美化及自定义)

    为什么80%的码农都做不了架构师?>>>    Web应用程序完整的URL管理包括两个方面.首先, 当用户请求约定的URL,应用程序需要解析 它变成可以理解的参数.第二,应用程序需求 ...

  2. Yii框架官方指南系列14——基础知识:开发流程

    为什么80%的码农都做不了架构师?>>>    介绍过 Yii 中的基本概念之后,我们现在讲解使用 Yii 开发Web应用时的一般开发流程. 此处的开发流程假设我们已经完成了对应用的 ...

  3. yii学习笔记—gii 自动代码生成工具

    其实 ajax 的一个很简单的实现原理就是建立一个隐藏的 iframe 然后通过这个 iframe 提交信息,再取 iframe 的返回信息,这样页面没有刷新,刷新的只是那个隐藏的 iframe Yi ...

  4. Python框架Flask系列教程(1)——基础-黄勇-专题视频课程

    Python框架Flask系列教程(1)--基础-4431人已学习 课程介绍         从初级讲解Flask开发网站.涉及到的知识点包括:URL和视图.Jinja2模版.SQLAlchemy数据 ...

  5. Yii框架官方教程增补篇3——开始:创建第一个Yii应用

    为什么80%的码农都做不了架构师?>>>    为了对 Yii 有个初步认识,我们在本节讲述如何建立第一个 Yii 应用.我们将使用yiic(命令行工具)创建一个新的 Yii 应用. ...

  6. Yii 框架执行流程

    https://blog.csdn.net/qq_25551295/article/details/51236174 一 目录文件 |-framework     框架核心库 |--base      ...

  7. YII框架yiic、gii工具使用方法

    yiic自动代码生成 yiic是自动代码生成工具,可以生成应用基本框架.假设YiiRoot为Yii的安装目录,AppRoot(不用创建,将自动生成)为即将安装的YiiRoot下的目录,则在dos命令行 ...

  8. linux下yii框架,YII框架网站开发流程

    Yii 是什么 Yii 是一个基于组件的高性能 PHP 框架,用于快速开发大型 Web 应用.它使Web开发中的 可复用度最大化,可以显著提高你的Web应用开发速度.Yii 这个名字(读作易(Yee) ...

  9. 前端测试框架Jest系列教程 -- Expect(验证)

    写在前面 在编写测试时,我们通常需要检查值是否满足某些条件,Jest中提供的expect允许你访问很多"Matchers",这些"匹配器"允许您验证不同的东西. ...

最新文章

  1. feign调用如何传递token_走进Spring Cloud之五 eureka Feign(服务调用者)
  2. 浏览器事件监听的方法
  3. Android 第三方之MPAndroidChart
  4. shell脚本例子集锦
  5. python 进程编程速成
  6. 相邻省份最多的省区_拉萨万达广场开业 实现中国大陆省份全覆盖
  7. linux 将结果放入数组,linux-如何将值添加到bash数组?
  8. MS SQL Server:分区表、分区索引详解
  9. php 工厂模式作用,PHP工厂模式的好处概述
  10. python token_Python实现JWT(JSON Web Token)认证
  11. GNS3中RIP的过滤和修改
  12. 字母c语言ascii码,c语言ascii码对照表
  13. 基于Binder机制之AIDL原理分析
  14. android缅甸语,关于unicode:Android中的缅甸语言
  15. 简单几步便可轻松制作思维导图,快来查收这份干货
  16. python电脑版微信-微信PC版的API接口 | 可通过Python调用微信功能
  17. html写樱花树,写樱花树的作文
  18. 水质检测c语言程序,单片机TDS水质检测源程序
  19. [数分提高]2014-2015-2第6教学周第1次课讲义 3.3 Taylor 公式
  20. 基于requests+pyecharts的前程无忧工作岗位可视化分析

热门文章

  1. bzoj2229: [Zjoi2011]最小割(最小割树)
  2. Android 6.0动态权限(转)
  3. “4K”也有真假说法?历数那些年被忽悠的参数
  4. 【linux高级程序设计】(第十一章)System V进程间通信 1
  5. leetcode -- Reverse Nodes in k-Group
  6. (转)android连网详解
  7. 无线网络安全认证[AD+Radius+CA]配置
  8. 图形学相关的一些数学知识(链接)
  9. 为何要使用大数据可视化平台
  10. 安徽省学考计算机操作,安徽省教育考试院全国计算机等级考试网上报名流程与操作步骤...