Vue.directive如何改写为长尾词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1636个文字,预计阅读时间需要7分钟。
在Vue中,通过使用mixins可以将文档滚动触底的逻辑迁移到某个DOM元素上。这样可以复用Vue.directive来简化代码逻辑。
元素滚动实现:要实现元素的滚动,可以通过以下步骤:
1. 创建滚动指令:使用`Vue.directive`来创建一个自定义指令,如`v-scroll-to-bottom`。
2.绑定指令:在目标元素上绑定这个指令。
3.监听滚动事件:在指令的钩子函数中添加事件监听器来检测滚动位置。
4.条件判断:判断滚动位置是否到达底部,如果是,则执行所需的操作。
具体实现:
javascript
// 创建指令Vue.directive('scroll-to-bottom', { // 绑定指令到元素时调用 bind(el, binding) { // 滚动事件处理函数 const handler=()=> { if ((window.innerHeight + window.scrollY) >=document.body.offsetHeight) { // 到达底部执行的操作 binding.value(); } };// 添加事件监听器 el.addEventListener('scroll', handler);
// 保存处理函数,以便后续移除 el._scrollHandler=handler; }, // 当指令与元素解绑时调用 unbind(el) { // 移除事件监听器 el.removeEventListener('scroll', el._scrollHandler); }});
// 使用指令
// 处理滚动到底部的逻辑
条件判断:- 有父子两个元素:确保指令绑定在父元素上,子元素滚动到底部时触发指令。可以通过判断子元素的滚动位置来实现。
继上篇Vue 滚动触底 mixins,将对于文档滚动触底的逻辑迁移到某个dom上,将会用到 Vue.directive 来实现代码逻辑复用。
元素滚动
如何实现滚动
元素实现滚动的条件有两个:
- 有父子两个元素
- 子元素的高度 > 父元素的高度, 并且父元素设置 overflow:scroll / auto;
scrollHeight 计算
Element.scrollHeight这个只读属性是一个元素内容高度的度量,包括由于溢出导致的视图中不可见内容。
可以简单的理解为,滚动高度是元素可以滚动的最大值,分为两种情况
滚动高度 = 当前元素的 clientHeight = height + padding
滚动高度 = 当前元素的padding + 子元素的clientHeight + 子元素的(padding,margin,border) + 伪元素(:after,:before)
scrollTop
Element.scrollTop 属性可以获取或设置一个元素的内容垂直滚动的像素数。
需要注意的是,scrollTop 是针对产生滚动条的元素而言,所以分为两种情况
- 不符合滚动条件, scrollTop 为0
- 符合滚动条件,可以通过 Element.scrollTop 来获取它的子元素的顶部到父级元素顶部的距离,不包括(border,padding)。
判断触底
为了简单起见,假设 father 和 child 都只设置了宽高。
<div class="father" ref="father"> <div class="child" ref="child"></div> </div> // 若为真说明触底 father.clientHeight + father.scrollTop >= child.scrollHeight
抽离成 Vue-directive
基本语法
参数1
指令名称,如focus 使用的时候就通过 v-focus 去绑定指定dom
参数2
options配置项,包含以下的钩子函数,分别在对应的生命周期触发
// 注册一个全局自定义指令 `v-focus` Vue.directive('focus', { bind(){ // 只调用一次,指令第一次绑定到元素时调用。在这里可以进行一次性的初始化设置。 }, // 当被绑定的元素插入到 DOM 中时…… inserted: function (el) { // 聚焦元素 el.focus() }, update(){ // 所在组件的 VNode 更新时调用 }, componentUpdated(){ // 指令所在组件的 VNode 及其子 VNode 全部更新后调用。 }, unbind(){ // 只调用一次,指令与元素解绑时调用。 } })
钩子函数的回调参数
上面的钩子函数都接受 el、binding、vnode 和 oldVnode 这些回调参数,对常用的参数做下解释
- el : 指令所 绑定的元素 ,可以用来直接操作 DOM 。
- binding : { name,value ,arg}
是绑定组件的data中的变量名
来说下 value 和 arg 的区别,假设我们想向指令传递特定的数据,可以通过下面的方式 arg传递值,和 value绑定值只能使用一种
// 通过 binding.value 接收 <div v-test="title">这里是测试</div> // 通过 binding.arg 接收 <div v-test:id1>测试2</div>
如何注册指令
全局注册
// 在单独一个文件中单独管理所有 directive import Vue from 'vue' import inputClear from './input-clear' import forNested from './picker-item-for-nested' import copy from "./copy"; const directives = { copy, 'input-clear':inputClear, 'for-nested':forNested } Object.keys(directives).forEach(key=>{ Vue.directive(key,directives[key]) })
局部注册,通过directives选项来注册
export default { directives:{ // 自定义指令的名字 autoFocus:{ inserted(el){ el.focus() console.log( 'inserted' ); } } } }
Vue.install的方式来安装
// directive.js export default { install(Vue){ Object.keys(directives).forEach(key=>{ Vue.directive(key,directives[key]) }) } } // main.js import Directives from "./directive/index"; // Vue.use 通过注册插件的方式来注册指令 `Vue 插件中 install 函数接受 Vue构造函数作为第一入参` Vue.use(Directives);
Vue.use 源码
// 接收一个 plugin 参数可以是 Function 也可以是 Object Vue.use = function (plugin: Function | Object) { // 如果传入的是对象,需要有一个install 方法,并执行该方法 if (typeof plugin.install === 'function') { plugin.install.apply(plugin, args) // 如果传入的是是函数则立即执行 } else if (typeof plugin === 'function') { plugin.apply(null, args) } }
将scroll 逻辑添加到 v-directive 中
如果子元素有多个,需要计算每个子元素的 height + padding + border + margin 所以为了方便使用,滚动目标的子元素有多个的情况下,用一个标签统一包裹
function isBottom(el){ const child = el.children[0] if(el.clientHeight + el.scrollTop >= child.scrollHeight){ console.log('触底了'); } } Vue.directive('scroll',{ bind(el){ el.addEventListener('scroll',function(){ isBottom(el) }) }, unbind(el){ el.removeEventListener(isBottom) } })
总结
以上所述是小编给大家介绍的Vue.directive 实现元素scroll逻辑复用,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对易盾网络网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
本文共计1636个文字,预计阅读时间需要7分钟。
在Vue中,通过使用mixins可以将文档滚动触底的逻辑迁移到某个DOM元素上。这样可以复用Vue.directive来简化代码逻辑。
元素滚动实现:要实现元素的滚动,可以通过以下步骤:
1. 创建滚动指令:使用`Vue.directive`来创建一个自定义指令,如`v-scroll-to-bottom`。
2.绑定指令:在目标元素上绑定这个指令。
3.监听滚动事件:在指令的钩子函数中添加事件监听器来检测滚动位置。
4.条件判断:判断滚动位置是否到达底部,如果是,则执行所需的操作。
具体实现:
javascript
// 创建指令Vue.directive('scroll-to-bottom', { // 绑定指令到元素时调用 bind(el, binding) { // 滚动事件处理函数 const handler=()=> { if ((window.innerHeight + window.scrollY) >=document.body.offsetHeight) { // 到达底部执行的操作 binding.value(); } };// 添加事件监听器 el.addEventListener('scroll', handler);
// 保存处理函数,以便后续移除 el._scrollHandler=handler; }, // 当指令与元素解绑时调用 unbind(el) { // 移除事件监听器 el.removeEventListener('scroll', el._scrollHandler); }});
// 使用指令
// 处理滚动到底部的逻辑
条件判断:- 有父子两个元素:确保指令绑定在父元素上,子元素滚动到底部时触发指令。可以通过判断子元素的滚动位置来实现。
继上篇Vue 滚动触底 mixins,将对于文档滚动触底的逻辑迁移到某个dom上,将会用到 Vue.directive 来实现代码逻辑复用。
元素滚动
如何实现滚动
元素实现滚动的条件有两个:
- 有父子两个元素
- 子元素的高度 > 父元素的高度, 并且父元素设置 overflow:scroll / auto;
scrollHeight 计算
Element.scrollHeight这个只读属性是一个元素内容高度的度量,包括由于溢出导致的视图中不可见内容。
可以简单的理解为,滚动高度是元素可以滚动的最大值,分为两种情况
滚动高度 = 当前元素的 clientHeight = height + padding
滚动高度 = 当前元素的padding + 子元素的clientHeight + 子元素的(padding,margin,border) + 伪元素(:after,:before)
scrollTop
Element.scrollTop 属性可以获取或设置一个元素的内容垂直滚动的像素数。
需要注意的是,scrollTop 是针对产生滚动条的元素而言,所以分为两种情况
- 不符合滚动条件, scrollTop 为0
- 符合滚动条件,可以通过 Element.scrollTop 来获取它的子元素的顶部到父级元素顶部的距离,不包括(border,padding)。
判断触底
为了简单起见,假设 father 和 child 都只设置了宽高。
<div class="father" ref="father"> <div class="child" ref="child"></div> </div> // 若为真说明触底 father.clientHeight + father.scrollTop >= child.scrollHeight
抽离成 Vue-directive
基本语法
参数1
指令名称,如focus 使用的时候就通过 v-focus 去绑定指定dom
参数2
options配置项,包含以下的钩子函数,分别在对应的生命周期触发
// 注册一个全局自定义指令 `v-focus` Vue.directive('focus', { bind(){ // 只调用一次,指令第一次绑定到元素时调用。在这里可以进行一次性的初始化设置。 }, // 当被绑定的元素插入到 DOM 中时…… inserted: function (el) { // 聚焦元素 el.focus() }, update(){ // 所在组件的 VNode 更新时调用 }, componentUpdated(){ // 指令所在组件的 VNode 及其子 VNode 全部更新后调用。 }, unbind(){ // 只调用一次,指令与元素解绑时调用。 } })
钩子函数的回调参数
上面的钩子函数都接受 el、binding、vnode 和 oldVnode 这些回调参数,对常用的参数做下解释
- el : 指令所 绑定的元素 ,可以用来直接操作 DOM 。
- binding : { name,value ,arg}
是绑定组件的data中的变量名
来说下 value 和 arg 的区别,假设我们想向指令传递特定的数据,可以通过下面的方式 arg传递值,和 value绑定值只能使用一种
// 通过 binding.value 接收 <div v-test="title">这里是测试</div> // 通过 binding.arg 接收 <div v-test:id1>测试2</div>
如何注册指令
全局注册
// 在单独一个文件中单独管理所有 directive import Vue from 'vue' import inputClear from './input-clear' import forNested from './picker-item-for-nested' import copy from "./copy"; const directives = { copy, 'input-clear':inputClear, 'for-nested':forNested } Object.keys(directives).forEach(key=>{ Vue.directive(key,directives[key]) })
局部注册,通过directives选项来注册
export default { directives:{ // 自定义指令的名字 autoFocus:{ inserted(el){ el.focus() console.log( 'inserted' ); } } } }
Vue.install的方式来安装
// directive.js export default { install(Vue){ Object.keys(directives).forEach(key=>{ Vue.directive(key,directives[key]) }) } } // main.js import Directives from "./directive/index"; // Vue.use 通过注册插件的方式来注册指令 `Vue 插件中 install 函数接受 Vue构造函数作为第一入参` Vue.use(Directives);
Vue.use 源码
// 接收一个 plugin 参数可以是 Function 也可以是 Object Vue.use = function (plugin: Function | Object) { // 如果传入的是对象,需要有一个install 方法,并执行该方法 if (typeof plugin.install === 'function') { plugin.install.apply(plugin, args) // 如果传入的是是函数则立即执行 } else if (typeof plugin === 'function') { plugin.apply(null, args) } }
将scroll 逻辑添加到 v-directive 中
如果子元素有多个,需要计算每个子元素的 height + padding + border + margin 所以为了方便使用,滚动目标的子元素有多个的情况下,用一个标签统一包裹
function isBottom(el){ const child = el.children[0] if(el.clientHeight + el.scrollTop >= child.scrollHeight){ console.log('触底了'); } } Vue.directive('scroll',{ bind(el){ el.addEventListener('scroll',function(){ isBottom(el) }) }, unbind(el){ el.removeEventListener(isBottom) } })
总结
以上所述是小编给大家介绍的Vue.directive 实现元素scroll逻辑复用,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对易盾网络网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

