Flex 4 中的双向绑定
假设我有一个变量:
[Bindable] public var clickedText:String
当我单击列表组件上的某个项目时,此 clickedText 以这种方式存储值:
clickedText = listID.selectedItem;
然后将此变量绑定到另一个子组件:
<component: childComp id = newid transferredText ="{clickedText}"/>
现在,它在 childComp 中工作正常,使得该值传输到子组件,但是当我修改 TransferText 时,我希望它也通知父组件的 clickedText 变量该值已更改并更新 clickedText。所以,总而言之,我需要双向绑定..我尝试了 @{clickedText} 但不起作用.. 因此,clickedText 会更新transferText,transferText 也会更新clickedText。
有人知道如何帮助我吗?
suppose i have a variable :
[Bindable] public var clickedText:String
and when i click on an item on a list component, this clickedText stores the value this way :
clickedText = listID.selectedItem;
and then bind this variable to another child component this way:
<component: childComp id = newid transferredText ="{clickedText}"/>
now, it works fine in the childComp such that the value is transferred to the child component but when i modify the transferredText, i want it to also inform the clickedText variable of the parent component that the value has changed and update the clickedText. so, in summary i need a two-way binding..i tried the @{clickedText} thing but not working..
so, the clickedText updates the transferredText and the transferredText updates the clickedText as well.
Anyone knows how to help me on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 BindingUtils。bindProperty功能。
Use BindingUtils.bindProperty function.