我只想做这样的事情:
<a href="${ a? 'a.htm' : 'b.htm'}">
如果您使用的是freemarker 2.3.23或更高版本,则可以使用then内置的:
then
<a href="${a?then('a.htm','b.html')}" target="${openTarget}">
如果您使用的是较早版本的freemarker,则可以改用string内置的:
string
<a href="${a?string('a.htm','b.html')}" target="${openTarget}">
当应用于布尔值时,string内置函数将充当三元运算符。