Velocity 模板语言中词汇上正确的语句是什么

发布于 2024-09-16 05:05:28 字数 397 浏览 8 评论 0原文

以下代码行是我正在处理的模板中的一行代码的通用版本。我查看了 Velocity 模板语言 文档< /a> 但无论我如何格式化此语句,我都会收到错误。这是我第一次真正体验 VTL,因此我希望能得到一批经验丰富的人士来解决这个问题:

#set($includeAttributes = 
   ${firstResponseItem.attribute1} != null || 
   ${firstResponseItem.attribute2 != null)

The following line of code is a generic version of a line in a template I'm working on. I have looked at the Velocity Template Language Documentation but I keep getting errors no matter how I format this statement. This is my first real experience with VTL so I was hoping to get a set of experienced eyes on the issue:

#set($includeAttributes = 
   ${firstResponseItem.attribute1} != null || 
   ${firstResponseItem.attribute2 != null)

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

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

发布评论

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

评论(1

猥琐帝 2024-09-23 05:05:28

Velocity 中没有 null,但您可以检查 null 值,就像它是布尔值 false 一样:

#set($includeAttributes = $firstResponseItem.attribute1 || $firstResponseItem.attribute2)

There is no null in Velocity, but you can check for a null value as if it was boolean false:

#set($includeAttributes = $firstResponseItem.attribute1 || $firstResponseItem.attribute2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文