这是我正在使用 angularJS 进行无限滚动的代码。但是代码不起作用,也没有显示错误。这是我的代码:
<!doctype html>
<html ng-app="myApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>
</head>
<style>
li {
height: 120px;
border-bottom: 1px solid gray;
}
#fixed {
height: 400px;
overflow: auto;
}
</style>
<body ng-controller="myCtrl">
<div id="fixed" when-scrolled="loadMore()" >
<ul>
<li ng-repeat="i in items">{{i.id}}</li>
</ul>
</div>
<script>
var app = angular.module('myApp', []);
myApp.controller('myCtrl', function($scope){
$scope.items = [];
var counter = 0;
$scope.loadMore = function() {
for (var i = 0; i < 5; i++) {
$scope.items.push({id: counter});
counter += 10;
}
};
$scope.loadMore();
}
angular.module('scroll', []).directive('whenScrolled', function() {
return function(scope, elm, attr) {
var raw = elm[0];
elm.bind('scroll', function() {
if (raw.scrollTop + raw.offsetHeight >= raw.scrollHeight) {
scope.$apply(attr.whenScrolled);
}
});
};
});
</script>
</body>
</html>
我认为 ng-app 或 ng-controller 存在一些问题。由于我是 angularjs 新手,请帮我解决这个问题。
提前致谢。