通过复合组件属性传递标记

发布于 2024-12-12 13:32:24 字数 276 浏览 1 评论 0原文

有没有办法通过复合传递标记(与纯文本相反) 组件的属性?仅仅 是不够的, 因为该组件依赖于不同的文本参数。通过传递标签 在 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 技术交流群。

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

发布评论

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

评论(1

倾听心声的旋律 2024-12-19 13:32:24

您需要将其声明为 并将其渲染为

<cc:interface>
    <cc:facet name="foo" />
</cc:interface>
<cc:implementation>
    <cc:renderFacet name="foo" />
</cc:implementation>

这样你可以使用

<my:composite>
    <f:facet name="foo">
        <p>Some <strong>HTML</strong> markup.</p>
    </f:facet>
</my:composite>

You need to declare it as <cc:facet> and render it as <cc:renderFacet>:

<cc:interface>
    <cc:facet name="foo" />
</cc:interface>
<cc:implementation>
    <cc:renderFacet name="foo" />
</cc:implementation>

This way you can specify it using <f:facet>:

<my:composite>
    <f:facet name="foo">
        <p>Some <strong>HTML</strong> markup.</p>
    </f:facet>
</my:composite>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文