内容简介:本次发版希望是最后一个2.x版本,增加了一个html标签新特性 html标签实现(Tag子类)可以通过$cols 变量访问该标签所定义的所有属性名 public class SimpleHtmlTag extends Tag{ @Override ...
本次发版希望是最后一个2.x版本,增加了一个html标签新特性
- html标签实现(Tag子类)可以通过$cols 变量访问该标签所定义的所有属性名
public class SimpleHtmlTag extends Tag{
@Override
public void render(){
String tagName = (String) this.args[0];
Map attrs = (Map) args[1];
String value = (String) attrs.get("id");
Map allColsDefine = (map)attrs.get("$cols");
try{
this.ctx.byteWriter.writeString(value);
}catch (IOException e){
}
}
}
如上Tag实现,在执行xxx标签的时候,
<ext:xxx id="cb-1" name="name" v-model="${true}" />
value为"cb-1",allColsDefine包含了id,name,v-modle 属性都定义
maven
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetl</artifactId>
<version>2.9.10</version>
</dependency>
Beetl是一款全功能,高性能优秀的国产模板引擎,可以广泛用于动态页面生成,静态页面生成,代码生成,文本转换,脚本和规则引擎等,从2011年来,一直维护,并得到国内用户的肯定。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Beetl 3.0.20 版本发布,Java 模板引擎
- Beetl 3.1.7 版本发布,Java 模板引擎
- Beetl 3.1.8 版本发布,Java 模板引擎
- Beetl 2.9.2 版本发布,Java 模板引擎
- Beetl 2.9.8 版本发布,Java 模板引擎
- Beetl 3.0.10 版本发布,Java 模板引擎
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Letting Go of the Words
Janice (Ginny) Redish / Morgan Kaufmann / 2007-06-11 / USD 49.95
"Redish has done her homework and created a thorough overview of the issues in writing for the Web. Ironically, I must recommend that you read her every word so that you can find out why your customer......一起来看看 《Letting Go of the Words》 这本书的介绍吧!