gpt4 book ai didi

angularjs - 如何在 AngularJS ng-repeat 中使用 ES6 Map

转载 作者:行者123 更新时间:2023-12-03 15:58:48 25 4
gpt4 key购买 nike

ng-repeat AngularJS 1.x 兼容 ES6 map ?

最佳答案

最简单的方法是创建您自己的 Angular 过滤器 @Minato建议。

您可以使用 ES6 Spread 语法将 map 转换为数组:

angular.module('SomeModuleName')
.filter('mapToArray', function() {
return function(map) {
return [...map.values()];
};
});

然后在模板中使用它:
<div ng-repeat="item in Map | mapToArray">

您还可以使用 lodash toArray 方法:
https://lodash.com/docs/4.17.4#toArray

关于angularjs - 如何在 AngularJS ng-repeat 中使用 ES6 Map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35337319/

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