Velocity - 无法合并时删除字段
我使用速度将字符串(模板)与
hi there I'am ${name},
And I'am ${age} old.
速度合并字段 ${name}
和 ${age}
与一种哈希表合并:
velocityEngine.evaluate(context, writer, "", template);
context
是哈希表(或者更好的是 VelocityContext
类型),
当 Velocity 无法在上下文中找到字段时,他只需删除它们。
我可以用财产或其他东西来做这件事吗?
I use velocity to merge a String(template) with field like
hi there I'am ${name},
And I'am ${age} old.
velocity merged the field ${name}
and ${age}
with a kind of hashtable:
velocityEngine.evaluate(context, writer, "", template);
context
is the hashtable(or better a VelocityContext
type)
I want when Velocity can't find the field in the context he just delete them.
can i do this with a property or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定这是否是您所要求的,但如果您想防止未分配的模板变量显示在合并模板中,您可以使用 安静表示法,通过编写
$!{name}
,还有一个全局设置。Not sure if it is what you are asking, but if you want to prevent unassigned template vars from showing up in merged templates, you can use quiet notation by writing
$!{name}
, there is also a global setting for that.