Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如题。我没有找到任何关于双向数据绑定的示例或博客。如果不支持,只能处理 ui 更改事件,还是有更好的方法来更新模型(值对象)?
我们仍然不支持@双向数据绑定的 Flex 编码风格。您可以使用事件侦听器作为解决方法。在MXML中,以下表示法是一个选项。
@
<fx:Binding source="voObj.firstName" destination="myTextInput.text" /> <fx:Binding source="myTextInput.text" destination="voObj.firstName" />
我们希望@在某个时候实施。与往常一样,欢迎志愿者尽快实现这一目标:)。