在前面的教程CodeSmith 使用教程(3): 自动生成Yii Framework ActiveRecord我们使用了主,从模板来实现了从数据库为Yii Framework生成多个表的ActiveRecord类定义,中CodeSmith项目中通过主模板和从模板的配合可以实现复杂的代码生成过程,主模板和从模板的关系有点类似主程序和子函数的关系。使用主-从模板的基本步骤如下:
注册子模板
<%@ Register Name="Header" Template="Header.cst" MergeProperties="True" ExcludeProperties="IncludeMeta" %>
Name:子模板在主模板中的类型名称,在主要模板中可以通过该类型创建子模板的实例
Template: 子模板文件名
MergeProperties: 是否需要把子模板中定义的属性:“合并”到主模板中。缺省为False
ExcludeProperties: 如果子模板的属性合并到主模板中时需要排除的属性列表,以逗号分隔。
子模板复制主模板中的属性
MergeProperties=”True” 可以把从模板中的属性合并到主模板中,如果从模板需要引用主模板的属性,比如主模板中定义了服务器地址,在多个子模板中都需要引用这个属性,此时可以通过复制父模板属性CopyPropertiesTo
来实现:
// instantiate the sub-template Header header = this.Create<Header>(); // copy all properties with matching name and type to the sub-template instance this.CopyPropertiesTo(header);
CopyPropertiesTo方法比较主模板中定义的属性和子模板中定义的属性,如果发现从模板中定义的属性和主模板中定义的属性名称类型相同(匹配)则把主模板中属性值复制到子模板中。
设置子模板属性
在主模板中要创建子模板的实例,可以直接通过Create方法
// instantiate the sub-template Header header = this.Create<Header>(); // include the meta tag header.IncludeMeta = true;
Create中的Header为注册子模板时Name来定义的类型,通过Create创建子模板的实例后,就直接可以通过该实例的属性来访问子模板中的属性,比如上面代码中IncludeMeta为子模板中定义的一个属性。
<header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;"></header><header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;"><span style="padding: 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; line-height: inherit;">从子模板输出结果</span></header><header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;">创建好子模板的实例,设置好子模板的属性,在主模板中就可以让子模板输出结果,有几种方法可以从子模板输出内容。</header><header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;">第一种是把子模板生成的结果直接插入到主模板中</header><header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;"><pre name="code" class="csharp">// instantiate the sub-template. Header header = this.Create<Header>(); // render the sub-template to the current output stream. header.Render(this.Response); </pre> <br><span style="color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 26px;">第二种方法是把结果输出到单独的文件中:</span><br></header><header style="padding: 15px 0px 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 21px;"><span style="color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 26px;"></span><pre name="code" class="csharp">// instantiate the sub-template. Header header = this.Create<Header>(); // render the sub-template to a separate file. header.RenderToFile("Somefile.txt"); </pre> <br><span style="color: rgb(85, 85, 85); font-family: 'Times New Roman', Helvetica, serif; font-size: 14px; line-height: 26px;">具体的例子可以参见</span><a href="http://www.imobilebbs.com/wordpress/archives/4196" style="padding: 0px; border: 0px; margin: 0px; font: inherit; vertical-align: baseline; color: rgb(0, 133, 207); text-decoration: initial; line-height: 26px; outline: none; font-family: 'Times New Roman', Helvetica, serif; font-size: 14px;">CodeSmith 使用教程(3): 自动生成Yii Framework ActiveRecord</a></header>