VUE-引入lodash防抖防止表单重复提交

VUE-引入lodash防止表单重复提交

引入lodash依赖

npm install lodash

防止重复提交方法

方法名称: _.debounce(function() {
this.$http.post('url',this.Form).then(({ data: res }) => {
}).catch(() => {})
}, 300), // 300 毫秒的防抖时间 可以自行设置

posted @ 2025-03-04 13:01  skystrivegao  阅读(90)  评论(0)    收藏  举报