在freemarker中使用三元运算符?

我只想做这样的事情:

<a href="${ a? 'a.htm' : 'b.htm'}">

回答:

如果您使用的是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内置函数将充当三元运算符


以上是 在freemarker中使用三元运算符? 的全部内容, 来源链接: utcz.com/qa/434026.html

回到顶部