[VueJsDev] 基础知识 - Button的全局节流 - 按钮 - 鼠标连点
[VueJsDev] 目录列表
https://www.cnblogs.com/pengchenggang/p/17037320.html
Button的全局节流
::: details 目录
:::
这是一个系统默认配置 所有系统的按钮要防止连续点击的暴力测试
这不是防抖函数,防抖函数不适合这里,这是节流函数
Step. 1: 注册函数
将函数注入到 Vue 当中
// @/main.js
import setVueClickGlobalThrottle from "@/libs/common/setVueClickGlobalThrottle.js"
setVueClickGlobalThrottle(Vue) // 将所有click 进行节流处理
Step. 2: 局部节流函数失效处理
并不是所有按钮需要节流
<Button :notThrottle="true"> ↑ </Button>
Code. 3: setVueClickGlobalThrottle.js 源码
这里的节流时间为1000毫秒,具体可以自行修改
// @/libs/common/setVueClickGlobalThrottle.js
const setVueClickGlobalThrottle = Vue => {
// 节流
const on = Vue.prototype.$on
Vue.prototype.$on = function (event, func) {
// console.info('全局拦截 click $on事件 event', event)
// console.info('节流 func', func)
let previous = 0
let newFunc = func
if (event === "click") {
// console.info('全局拦截 click 事件 setVueClickGlobalThrottle')
newFunc = function () {
const now = new Date().getTime()
if (this.$attrs.notThrottle || previous + 1000 <= now) {
console.info("this, arguments", this, arguments)
func.apply(this, arguments)
previous = now
}
}
}
on.call(this, event, newFunc)
}
}
export default setVueClickGlobalThrottle
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)