在 MVEL 中格式化 orb 标签
如何删除 MVEL 2.0 模板结果中 @code{}、@if{}、@foreach{}、@end{} 等或标签生成的空白行?
How to remove the whitespace line generated by @code{}, @if{}, @foreach{}, @end{} etc or Tags in the result of MVEL 2.0 templating?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想在标签前后有空格,则不要在标签前后使用 CR:
例如: Items: @foreach{item : stuff}@{item}@{','}
如果将其分成多个行,空白被保留。
If you don't want whitespace before and after the tags, then don't CR before and after:
for example: Items: @foreach{item : stuff}@{item}@{','}
If you break it onto multiple lines, the whitespace is preserved.