通过复合组件属性传递标记
有没有办法通过复合传递标记(与纯文本相反) 组件的属性?仅仅
是不够的, 因为该组件依赖于不同的文本参数。通过传递标签 在 JSF 2.0 组件中包含子元素中描述的属性不起作用(属性内容无效)。
Is there a way to pass markup (in opposite to plain text) via composite
component's attributes? Simply <composite:insertChildren>
won't suffice,
since the component rely on distinct text parameters. Passing tags via
attributes as described in Include sub-element inside JSF 2.0 component does not work (invalid attribute content).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将其声明为
并将其渲染为:
这样你可以使用
:
You need to declare it as
<cc:facet>
and render it as<cc:renderFacet>
:This way you can specify it using
<f:facet>
: