gpt4 book ai didi

c# - nVelocity 中 if false 的语法是什么?

转载 作者:行者123 更新时间:2023-11-30 12:00:05 26 4
gpt4 key购买 nike

nVelocity(或 Velocity)中 not true 或 false if 语句的语法是什么?

更重要的是,这在 nVelocity 文档中的什么位置?我已经在谷歌上搜索了很长时间,但无济于事。

我尝试了几种不同的组合,例如:

#if (!$artist.IsFestival)

$artist.FestivalName

#end

#if ($artist.IsFestival == false)

$artist.FestivalName

#end

真令人沮丧!

提前致谢!

-EV

最佳答案

这两个都应该有效,所以我认为您在访问“isFestival”时可能会遇到问题。您应该尝试 bean 语法 $artist.festival 或方法语法 $artist.isFestival()(您现在混合使用两者)。该方法返回一个 boolean 值,对吧?

对于调试,尝试只打印出结果以查看它是否有效:

 $artist            ## see if the artist is defined
$artist.IsFestival ## maybe an error
$artist.festival ## should be true or false
$artist.isFestival() ## should be true or false

更新:刚读到您询问的是 nVelocity。我的回答可能只适用于 Java 版本。无论如何,请尝试一下。

关于c# - nVelocity 中 if false 的语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2226890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com