如果您使用的是freemarker
2.3.23或更高版本,则可以使用
then内置的:
<a href="${a?then('a.htm','b.html')}" target="${openTarget}">
如果您使用的是较早版本的freemarker,则可以改用
string内置的:
<a href="${a?string('a.htm','b.html')}" target="${openTarget}">
当应用于布尔值时,
string内置函数将充当三元运算符。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)