dongxi8993 2016-07-14 12:45
浏览 32

从角度远程服务器无限滚动

I am working on an ionic angular project. There's a section where I'm implementing infinite scroll, and when I scroll to the bottom I see the data showing up.

What I've realized is the data somehow pre-populates and hides, waiting to come up when the user reaches the bottom of the page. Because no call is made to the server to load the other feeds, I'm displaying 5 records at a time.

From the php script, I've converted to a json. I have 60 rows, and from the chrome console I read the json length to be 60, meaning all the 60 rows are loaded up were the data is pre-populated already.

Is there a way I can show 5 records at a time and then when the user scrolls to the bottom it passes the last id, so a call would be made to the server to load the feeds?

JS:

.controller('feedsctrl',['$scope','$http',function($scope,$http){
$http.get('http://usefulsite.com/app/feeds.php').success(function(data){
       $scope.feeds= console.log(data); ;
       $scope.feeds=data;

       $scope.numberOfItemsToDisplay = 5; // Use it with limit to in ng-repeat
$scope.addMoreItem = function(done) {
    if ($scope.feeds.length > $scope.numberOfItemsToDisplay)
        $scope.numberOfItemsToDisplay += 5; // load number of more items
        $scope.$broadcast('scroll.infiniteScrollComplete')
});   

php

SELECT * FROM users order by fname asc

HTML

<ion-content overflow-scroll="false" has-bouncing="true">

        <div ng-controller="feedsctrl" class="list card has-subheader" ng-repeat="item in feeds | filter:scheduleSearch | limitTo:numberOfItemsToDisplay">

            <div class="item item-avatar">
                <img src="http://usefulsite.com/resize_image/images.php?image={{item.profile_pix}}&new_width=100&new_height=100">
                <h2><a class="names" href="#/tab/source/{{item.profile_id}}">{{item.fname}}&nbsp;{{item.lname}}</a></h2>
                <p>November 05, 1955</p>
            </div>

            <div class="item item-body">
                <img class="full-image" src="http://usefulsite.com/aoo/resize_image/images.php?image={{item.pic}}&new_width=800&new_height=800">
<p>{{item.fname}} {{item.lname}}</p>
            </div>

        </div>


        <ion-infinite-scroll

                on-infinite="addMoreItem()"
                distance="1%"
                ng-if="feeds.length > numberOfItemsToDisplay">
        </ion-infinite-scroll>
  • 写回答

1条回答 默认 最新

  • drzablspw01655860 2016-07-20 17:28
    关注

    If you have the entire data at client side than you can use the angular pagination directive for a better performing experience.

    Try like this.

    var app = angular.module('plunker', []).controller('pagedController', function($scope) {
    
       $scope.numPerPage = 5;
       $scope.data = [];
      
    $scope.items = [];
    for (i=1;i<=60;i++) {
      $scope.items.push({ text:'item '+i});
    }
    
    
      $scope.getMoreData = function () {
      $scope.data = $scope.items.slice(0, $scope.data.length + $scope.numPerPage);
      };
      
      $scope.getMoreData();
      
    });
    
    app.directive('infiniteScroll', function() {
    return function(scope, elm, attr) {
        var raw = elm[0];
        
        elm.on('scroll', function() {
            if (raw.scrollTop + raw.offsetHeight >= raw.scrollHeight) {
                scope.$apply(attr.infiniteScroll);
            }
        });
    };
    });
     .itemContainer
     {
    width: 150px;
    height: 130px; 
    border: thin solid black;
    overflow-x: hidden;
    overflow-y: scroll;
     }
    
    
     .item
     {
                
    background: #f9f9f9;
    font-family: verdana;
    margin: 7px;
    width : 110px;
      }
    <!DOCTYPE html>
    <html ng-app="plunker">
    
      <head>
    <link rel="stylesheet" href="style.css" />
    <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
    <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.2/angular.js"></script>
    <script src="script.js"></script>
      </head>
      
      <body ng-controller="pagedController">
    <h1>Infinite scroll</h1>
    <h4>{{items.length}} items</h4>
    <div class="itemContainer" infinite-scroll="getMoreData()">
    <ul>
      <li ng-repeat="item in data" class="item">{{item.text}}</li>
    </ul>
    </div>
    
      </body>
    
    </html>

    Plunker : http://plnkr.co/edit/TJi4Um6a31fYsmVwtAmZ?p=preview

    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP