如何访问支持 UIComponent 中的复合组件属性值?

发布于 2024-11-26 22:59:24 字数 100 浏览 1 评论 0原文

我们可以在 #{cc.attrs.attributeName} 的实现中访问复合组件属性值(在接口部分中定义)。

我们如何在支持组件中访问该值?

We can access the Composite Component attribute values (defiled in the interface section), in the implimentation like #{cc.attrs.attributeName}

How can we access this value in the backing component?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南风几经秋 2024-12-03 22:59:24

它仅在继承的任何方法中可用 getAttributes() 方法,返回一个 Map ,其中属性名称作为映射键,属性值作为地图值。

Bar bar = (Bar) getAttributes().get("bar");
// ...

It's just available inside any of the methods by the inherited getAttributes() method which returns a Map<String, Object> with the attribute name as map key and attribute value as map value.

Bar bar = (Bar) getAttributes().get("bar");
// ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文