Velocity - 无法合并时删除字段

发布于 2024-08-09 14:55:28 字数 386 浏览 5 评论 0原文

我使用速度将字符串(模板)与

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 技术交流群。

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

发布评论

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

评论(1

陌伤ぢ 2024-08-16 14:55:28

不确定这是否是您所要求的,但如果您想防止未分配的模板变量显示在合并模板中,您可以使用 安静表示法,通过编写$!{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.

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