Velocity 中的条件运算符

发布于 2024-07-27 00:29:58 字数 295 浏览 5 评论 0原文

有没有办法在 Velocity 中进行三元运算符? 这就是我想做的:

#set ($name = ($args.get(0) == "") ? "default" : $args.get(0))

而不是厚重的 if-else

#if ($args.get(0) == "")
    #set ($name = "default")
#else
    #set ($name = $args.get(0))
#end

有什么想法吗?

Is there a way to do ternary operators in Velocity?
This is what I'd like to do:

#set ($name = ($args.get(0) == "") ? "default" : $args.get(0))

Instead of chunky if-else

#if ($args.get(0) == "")
    #set ($name = "default")
#else
    #set ($name = $args.get(0))
#end

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

倾城°AllureLove 2024-08-03 00:29:58

根据经验和阅读VTL参考,没有办法做到这一点。 如果您有很多这样的作业,也许您可​​以考虑定义自己的 velocimacro 来尝试避免重复 if else。

例如,如果宏仅打印单个字符串,您可以执行以下操作:

#set ($name = "#condOpt($args.get(0), "default")")

宏调用周围的双引号很重要,因为这意味着 #set 的 RHS 已被解析。

From experience and reading the VTL Reference there is no way to do this. If you had lots of assignments like this maybe you could look at defining your own velocimacro to try and avoid repeating the if else.

For example, if the macro only prints a single string you could do the following:

#set ($name = "#condOpt($args.get(0), "default")")

The double quotes around the macro call are important as that means the RHS of the #set is parsed.

娇柔作态 2024-08-03 00:29:58

我最终按照你说的做了,马克:

#macro(condOp $check, $default)
    #if ($check == "")
        $default
    #else
        $check
    #end
#end

然后我可以这样称呼它:

#set ($name = "#condOp($args.get(0), 'default')")

I ended up doing as you said, Mark:

#macro(condOp $check, $default)
    #if ($check == "")
        $default
    #else
        $check
    #end
#end

And then I can call it like so:

#set ($name = "#condOp($args.get(0), 'default')")
信仰 2024-08-03 00:29:58

根据记录,对于 Velocity 2.1+,您可以提供备用参考值

${args[0]|'default'}

For the record, with Velocity 2.1+, you can provide alternate reference values:

${args[0]|'default'}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文