标签: angularjs sorting multidimensional-array angularjs-orderby
我有来自 API网址的嵌套多维JSON 数据。我已经能够使用四个嵌套的ng-repeat 行循环显示所有数据 angularjs 。我尝试使用 orderBy 按特定属性对数据进行排序。排序在第二个ng-repeat行中正常工作:orderBy : 'person.lastName'但由于某种原因,相同的排序不适用于第四个ng-repeat行,例如:orderBy : 'stat.points'。感谢所有能提供帮助的人!
orderBy : 'person.lastName'
orderBy : 'stat.points'
这是我的CodePen测试项目。