Flex 4 中的双向绑定

发布于 2024-11-07 03:30:01 字数 555 浏览 0 评论 0原文

假设我有一个变量:

 [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 技术交流群。

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

发布评论

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

评论(1

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