如果连续点击提交按钮,可能会重复提交数据,导致出错,解决的方法可以使用disabled限制点击,感觉体验不是太好,所有给大家分享下面的方法
1
2
3
4
5
6
7
8
|
< el-button @ click = "throttle()" >测试</ el-button > export default { data(){ return { lastTime:0 //默认上一次点击时间为0 } } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
methods:{ throttle(){ //获取当前时间的时间戳 let now = new Date().valueOf(); //第一次点击 if ( this .lastTime == 0){ console.log( '触发事件' ); this .lastTime = now; } else { if ((now- this .lastTime) > 2000){ //重置上一次点击时间,2000是我自己设置的2秒间隔,根据自己的需要更改 this .lastTime = now; console.log( '间隔大于2秒,触发方法' ); //添加自己要调用的方法 } else { console.log( '不触发' ); } } }, } |
这种方法虽然很好,但是遇到请求超时的情况可能不是太好处理(网络原因、数据太大)。考虑通过后端是否返回res来控制。方法还有待提高!仅供参考~
补充知识:解决vuex中module过多时,需一个个引入的问题
在项目开发中,使用vuex,如果项目过大,vuex就需要模块化,但是如果module分的过多,我们就需要在store的index.js中一个个引入,这样未免太麻烦,所以webpack出来了个配置,可以解决这个问题,无需多次引入,懒癌患者福音,
以下是解决方案
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Vue from 'vue' import Vuex from 'vuex' import getters from './getters' Vue.use(Vuex) const modulesFiles = require.context( './modules' , true , /\.js$/) const modules = modulesFiles.keys().reduce((modules, modulePath) => { const moduleName = modulePath.replace(/^\.\/(.*)\.\w+$/, '$1' ) const value = modulesFiles(modulePath) modules[moduleName] = value. default return modules }, {}) const store = new Vuex.Store({ modules, getters }) export default store |
配置了这个后就无需一个个引入模块了;
以上这篇Vue 防止短时间内连续点击后多次触发请求的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_43953518/article/details/106915918