首页 > 代码库 > Vue+jquery上拉加载
Vue+jquery上拉加载
<ul> <li class="new-list" v-for="item in proarr"> <a :href="‘/index.php/new/news?id=‘+item.id" class="new-item"> <div class="new-title ell">{{item.title}}</div> <div class="new-content"> <div class="new-cover" v-bind:style="{backgroundImage: ‘url(‘+item.purl+‘)‘}"></div> <div class="new-desc">{{item.introduction}}</div> </div> <div class="new-date">{{item.create_date}}</div> </a> </li> </ul> <div id="ajaxloading" v-show="showLoading" class="ac line-scale-pulse-out-rapid"> <div></div> <div></div> <div></div> <div></div> <div></div> </div> <p class="errormsg ac orange pd20">{{errmsg}}</p>
new Vue({ el: ‘#app‘, data() { return { proarr: [], showLoading: false, p:1, errmsg:‘‘ }; }, components: { }, created() { this.getProList();
//监听滚动 window.addEventListener(‘scroll‘, this.handleScroll); }, methods: { handleScroll() {
//判断滚动到底部 if ($(window).scrollTop() >=$(document).height() - $(window).height()) { this.showLoading = true; this.p++; this.getProList(this.p); } }, getProList() { var that = this; $.post(‘url‘,{p:this.p},function(datas){ var state = datas.sign; that.showLoading = false; if (state === ERROK) { var data =http://www.mamicode.com/ datas.data.data; for (var i = 0; i < data.length; i++) { that.proarr.push(data[i]); } that.errmsg=‘‘; } else { that.errmsg=‘暂无更多数据‘; } },‘json‘); } } })
开始碰到个坑。请求到的数据我直接push到循环数组中,结果整个数组变成一个元素,后来想了想用循环把每一条数据分别push才解决这个问题
Vue+jquery上拉加载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。