时间:2021-05-25
这篇文章主要介绍了基于JS实现父组件的请求服务过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
<template> <div class = 'car_list' reft='scrollobx' @scroll='scrollready($event)'> </div></template><script> export default { data() { return { lengthThreshold: 50, //当滑动到距离低端50px时,更新数据 timeThreshold: 300, promise: null } }, methods: { // 滚动加载列表 scrollready() { if(this.shouldScroll()) { if (this.promise) { return; } // 进行加载 this.fn(); // 防止多次滑动,频繁请求后台资源 let self = this; this.promise = setTimeout(() => { self.promise = null; }, this.timeThreshold); } }, // 调用父组件请求资源服务 fn() { this.$emit('scrollChange'); }, shouldScroll() { if(document.scrollTop === 0) {// 滑动距离为0,还没开始滑动 return false; }<br data-filtered="filtered"> // 列表高度 - 列表可视高度 - 滑动的高度 < 50px , 则加载更多 return this.$refs.scrollbox.scrollHeight - this.$refs.scrollbox.clientHeight - this.$refs.scrollbox.scrollTop < this.lengthThreshold; }, } }</script>父组件的请求服务方法:
queryCarApplyShareList() { this.Load = true; CarResources.methods.queryCarApplyShareList(this.http, this.pageNo, this.pageSize).then((res) => { if (res && res.status === 200) { if (this.pageNo === 1) { // 加载第一页数据 this.CarList = res.data || []; } else { // 加载更多 this.CarList = <strong>this.CarList.concat(res.data);</strong> } this.IsLastPage = res.data.length === 0 } this.Load = false; }, () => { this.Load = false; console.log('接口报错'); });},以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
组件间通信(父子,兄弟)相关链接\组件通信:点击查看学习链接:Vue.js——60分钟快速入门点击查看分分钟玩转Vue.js组件点击查看父组件传子组件父传子方法
组件(Component)是Vue.js最强大的功能。组件可以封装可重用的代码,通过传入对象的不同,实现组件的复用,但组件传值就成为一个需要解决的问题。1.父组
本文介绍了vue.js$refs和$emit父子组件交互的方法,分享给大家,废话不多说直接看代码:父调子$refs(把父组件的数据传给子组件)//hello组件
思路:父组件通过props传值给子组件,子组件通过$emit来通知父组件修改相应的props值,具体实现如下:importVuefrom'vue'constco
我们在使用vue开发过程中会遇到这样的情况,在父组件中引入了子组件,需要将父组件的值传到子组件中显示,同时子组件还可以更改父组件的值。以我目前的一个项目的开发为