这篇文章给大家分享的是有关AnglarJs中如何实现上拉加载的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
成都网站制作、做网站介绍好的网站是理念、设计和技术的结合。创新互联建站拥有的网站设计理念、多方位的设计风格、经验丰富的设计团队。提供PC端+手机端网站建设,用营销思维进行网站设计、采用先进技术开源代码、注重用户体验与SEO基础,将技术与创意整合到网站之中,以契合客户的方式做到创意性的视觉化效果。
实现
页面
controller中上拉加载功能使用
app.controller('wdListCtrl', ['$scope','catInfoService', function ($scope,catInfoService) { //下拉加载service $scope.catinfo = new catInfoService();
封装上拉加载CatInfoService.js
/** 2017-10-26 *作者:卜凡起 *功能: */ define(['jquery','app'], function ($,app) { app.service('catInfoService', ['$location','$http', function($location,$http) { var CatInfo = function () { this.items =null; this.busy = false; this.after = ''; this.page = 1; this.pagenum =10; this.title = ''; this.varieties =''; }; CatInfo.prototype.nextPage = function () { if (this.busy) return; this.busy = true; var url = baseurl+"接口地址?page=" + this.page + "&pagenum="+ this.pagenum + "&title="+this.title+ "&varieties="+this.varieties+"&callback=JSON_CALLBACK"; $http.jsonp(url).success(function(data) { var items =data.data; console.log(items); if( this.items == null){ this.items=items; }else{ for (var i =0;i < items.length; i++) { this.items.push(items[i]); } } this.after = "t_" + this.items[this.items.length -1 ].id; if(items != null){ if(items.length< 10){ this.busy = true; }else{ this.busy = false; } } this.page +=1; }.bind(this)); }; return CatInfo; }] ); });
效果
感谢各位的阅读!关于“AnglarJs中如何实现上拉加载”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!