如何访问支持 UIComponent 中的复合组件属性值?
我们可以在 #{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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它仅在继承的任何方法中可用
getAttributes()
方法,返回一个Map
,其中属性名称作为映射键,属性值作为地图值。It's just available inside any of the methods by the inherited
getAttributes()
method which returns aMap<String, Object>
with the attribute name as map key and attribute value as map value.