如何在 Tapestry 中隐藏额外的组件跨度标签?
如果我使用 span 标签来渲染像 这样的组件,我的 HTML 最终会出现一堆无用的 span 标签。 大多数时候,这没问题,但在某些情况下,它会干扰我的 CSS 或使页面无效。 有没有办法告诉 Tapestry 处理标签,但不实际渲染它?
If I use a span tag to render a component like <span jwcid="@If" .../>, my HTML ends up with a bunch of useless span tags. Most of the time, that's ok, but in some cases, it's interfering with my CSS or making the page invalid. Is there a way to tell Tapestry to process the tag, but not actually render it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 org.apache.tapestry.renderTags Tapestry 配置属性:
您还可以为特定组件实例指定
renderTag
参数,请参阅 如果组件文档。Take a look at
org.apache.tapestry.renderTags
Tapestry configuration property:You can also specify the
renderTag
parameter for a particular component instance, see the If component documentation.