首页
App
&
Coffee
文档
项目
分享
反馈
俱乐部
登录
注册
Enjoy模板怎么让首字母大写呢?
萧云天
2018-04-15 14:11
怎么在Enjoy模板文件中让string首字母大写呢?java代码中是可以的
项目:
JFinal
2
1
评论区
JFinal
2018-04-15 15:04
将 jfinal 的 StrKit 添加为共享对象:
engine.addSharedObject("StrKit", new StrKit());
然后这么来用:
#(StrKit.firstCharToUpperCase("abcdef"))
#(StrKit.firstCharToUpperCase(变量名))
将 StrKit 添加为 shared method 用起来更方便:
engine.addSharedMethod(StrKit);
#(firstCharToUpperCase(变量名));
回复
发送
我要分享
热门分享
扫码入社
engine.addSharedObject("StrKit", new StrKit());
然后这么来用:
#(StrKit.firstCharToUpperCase("abcdef"))
#(StrKit.firstCharToUpperCase(变量名))
将 StrKit 添加为 shared method 用起来更方便:
engine.addSharedMethod(StrKit);
#(firstCharToUpperCase(变量名));