速度设置指令中的新行
如何使用 set 在速度模板中附加换行符?这是行不通的。
#(set $some = "$a \n $b")
按字面打印 \n。
这样做也不起作用:
VelocityContext context = new VelocityContext();
context.put("esc", new EscapeTool());
Velocity.evaluate(context, writer, "LOG", template);
How do you append a newline in velocity template using set? This does not work.
#(set $some = "$a \n $b")
Prints literally \n.
Doing this also does not work :
VelocityContext context = new VelocityContext();
context.put("esc", new EscapeTool());
Velocity.evaluate(context, writer, "LOG", template);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 EscapeTool 用于此:
如何初始化工具:
您可以从 此处(它也包含在工具 jar 中)并启用您需要的工具。
You can use
$esc.n
or its synonym$esc.newline
from the EscapeTool for this:How to init tools:
You can get default velocity-tools.xml from here (it's also included into tools jar) and enable tools that you need.
您知道,在现代版本的 Velocity 中,您只需插入换行符即可。
You know, in modern versions of Velocity you just put the line break in.