我正在使用Android中的Onsenui和Cordova开发一个混合移动应用程序,其中我想在主页中显示一些数据并在向下滚动时加载更多项目。
我知道这是使用ons-infinite-scroll
完成的
以下是我的尝试
<ons-scroller
infinit-scroll-enable="true" can-load="true" on-scrolled="populateList()" threshold="2" style="height:100%">
<div ng-repeat="item in items">
//display the data
</div>
</ons-scroller>
的js
module.controller('AppController', function($scope,$http) {
//for initial loading
$scope.items=new Array();
$scope.page=1;
$http.get(url+"getlotterylist").then(function(msg){
$scope.loading=false;
$scope.items=msg.data;
});
//load more when scrolls down
$scope.populateList=function(){
$http.get(url+"getlotterylist&&page="+$scope.page).then(function(msg){
$scope.items=msg.data;
$scope.page +=1;
});
}
}
实际问题是当向下滚动时用新的替换旧数据。如何解决它?。我还想在获取所有数据后停止滚动
PHP
function get_lottery_list(){
$limit=7;
$page=(isset($_GET['page']))?$_GET['page']:1;
$start=($page-1)*$limit;
$connect=db_connect();
$result=$connect->prepare("SELECT * FROM `daily_draw_details` ORDER BY `id` DESC LIMIT $start,$limit");
$result->execute();
echo json_encode($result->fetchAll(PDO::FETCH_ASSOC));
}
答案 0 :(得分:0)
每次发出请求时,您都会使用$scope.items=msg.data;
覆盖所有项目。只需将新项目添加到$scope.items
的末尾即可。此外,您可能需要检查ons-lazy-repeat
,因为不再支持<ons-scroller infinite-scroll>
:http://onsen.io/guide/overview.html#UsingLazyRepeat