根据分层数据结构中的子字段计算的父数据
在 Flex 3 中,我有一个分层数据结构。 我想在树中显示它的内容。 我的问题是我有从子节点计算数据的节点。 如果子节点的数据发生更改,如何构建层次结构以自动更改这些父节点? 例如:
- 每个节点都有一个警告标志。 如果某些子警告标志更改为 true,则父警告标志应自动设置为 true。
- 节点整型字段是子整型字段的总和,如果任何子整型字段发生变化,则父整型字段立即“计算”总和。
是否有一个简单的解决方案可以自动发生良好的结构更改,或者我必须创建一些自定义函数?
谢谢!
In flex 3 I have a hierarchical data structure. I would like to display the content of it in a tree. My problem is that I have nodes which data calculated from children nodes. How to structure the hierarchy to make automatic changes to those parent nodes, if their children's data changed?
For example:
- Every node has a warning flag. If some of the children warning flag changed to true, then the parent warning flag should change automatically set to true.
- A node integer field is the sum of the children integer fields, and if any of the children changes, the parent integer field "calculates" the sum immediately.
Is there an easy solution wit good structuring changes happen automatically, or I have to make some custom functions?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们通过遵循以下模式来做到这一点:
这应该会导致任何正在监视父级聚合属性的 UI 在子级更新时更新。
这是一个例子:
We do this by following this pattern:
This should cause any UI that's watching the aggregate property of the parent to be updated whenever a child is updated.
Here's an example: