Velocity 模板语言中词汇上正确的语句是什么
以下代码行是我正在处理的模板中的一行代码的通用版本。我查看了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Velocity 中没有
null
,但您可以检查 null 值,就像它是布尔值false
一样:There is no
null
in Velocity, but you can check for a null value as if it was booleanfalse
: