gpt4 book ai didi

dart - 角 Dart : ng-repeat filter update

转载 作者:行者123 更新时间:2023-12-04 22:56:25 27 4
gpt4 key购买 nike

我正在尝试将过滤器应用于 ng-repeat。但是当我的模型改变时它不会更新。

<th ng-repeat='column in cmp.columns | filter {visible:"true"}'>
{{column.title}}
</th>

如果这有任何不同的话,我将通过组件中的 future 获取列。

cols.getColumns().then ((columns){
this.columns = columns;
})

最佳答案

当前的解决方法

将过滤器逻辑移动到我的组件中:

List get visibleColumnNames => columns.where((col) => col['visible'] == true)
.map((col) => col['name']).toList();

仍然想知道如何在带有过滤器的模板中执行此操作。

关于dart - 角 Dart : ng-repeat filter update,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25472524/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com