我可以对嵌套对象使用无限滚动吗?假设我们有 3 个部门,每个部门有 10 名员工。这是一个示例代码:
<div infinite-scroll="$ctrl.scroll()">
<div ng-repeat="department in $ctrl.departments">
/* display data here */
<div ng-repeat="employee in $ctrl.employees">
/* display data here */
</div>
</div>
</div>
这是js代码:
this.scroll = function() {
console.log("Infinite Scroll Triggered");
for(var i = 0; i < 3; i++) {
console.log("pushing " + this.departments[i].name);
this.departments.push(this.department[i]);
for(var j = 0; j < 10; j++){
console.log("pushing " + this.employee[i].name);
this.employees.push(this.employee[i]);
}
};
我可以在控制台上看到我正在向部门和员工推送,但页面没有刷新。我也找不到任何将 ng-scroll 与嵌套 ng-repeat 和嵌套对象一起使用的示例。