“绑定”是如何实现的?在 JSF 工作?
我创建了显示图表的自定义组件。
现在我需要为此组件提供绑定支持,即生成的图表图像应该可以通过绑定机制(作为字节数组)提供给支持 bean。
我想了解一些有关绑定实现技术的一般信息。也欢迎任何链接和示例。
提前致谢!
UPD:简单来说:解析哪个相位值绑定?
I've created custom component which shows chart.
Now I need to make binding support for this component i.e. generated chart-image should be available (as array of bytes) to backing bean via binding mechanism.
I'd like to know some general info about binding implementation techniques. Any links and examples are welcome as well.
Thanks in advance!
UPD: lets put it simple: on which phase value bindings are resolved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜它处于
更新模型值
阶段。但这有什么关系 - 每当您调用操作方法(
Invoke application
)时,绑定就已经更新了。如果您询问如何进行绑定 - 请使用 bean 上的
private UIYourComponentNameboundComponent
字段。I guess it's on the
Update model values
phase.But what does it matter - whenever you call an action method (
Invoke application
) the binding is already updated.If you are asking how to do the binding - use a
private UIYourComponentName boundComponent
field on the bean.