Anjular的ng-repeat不会循环一个二维集合中的一维集合。举个例子:集合 list= {1,2,{0,1,2},23,222},small={0,1,2},使用ng-repeat" value in list.small" ,里面的{0,1,2}不会被循环
解决方法:如果已经声明过ng-repeat" value in list" ,可以使用value进行循环:
ng-repeat" value in value.small"
本文共 270 字,大约阅读时间需要 1 分钟。
Anjular的ng-repeat不会循环一个二维集合中的一维集合。举个例子:集合 list= {1,2,{0,1,2},23,222},small={0,1,2},使用ng-repeat" value in list.small" ,里面的{0,1,2}不会被循环
解决方法:如果已经声明过ng-repeat" value in list" ,可以使用value进行循环:
ng-repeat" value in value.small"
转载于:https://www.cnblogs.com/zpzp6/p/10833122.html