VUE:防止按钮重复点击触发接口

VUE:防止按钮重复点击触发接口

在el-button中添加disabled属性,进行动态控制

<el-button type="primary" 
 @click="handleSave" 
:disabled="disabled">保存</el-button>

是在点击按钮后禁用两秒,两秒之后,按钮恢复启用状态

    // 调用事件动态控制disabled属性
    handleSave() {
      this.disabled = true;
      let params = {
        data: this.data,
      };
      this.$requestFn("POST", this.$url.export.test, params)
      .then((res) => {
        this.$toast.success("保存成功");
      })
      .finally(() => {
        setTimeout(() => {
	    	this.disabled = false;
        }, 2000)
      });
    },

参考文章:
Vue中防止按钮重复点击提交的方法

### 关于 Vue 表格复选框防止重复提交的解决方案 在 Vue 中使用表格复选框时,如果需要调用接口防止多次点击导致的重复提交问题,可以通过以下方式实现: #### 1. 使用按钮禁用机制 通过设置一个标志位 `isSubmitting` 来控制按钮的状态,在发起请求前将其设为 true 并禁用按钮,待请求完成后恢复其状态。 ```javascript methods: { handleSubmit() { if (this.isSubmitting) return; this.isSubmitting = true; const selectedRows = this.selectedRowKeys.map(key => this.dataSource.find(item => item.key === key)); axios.post('/api/submit', { data: selectedRows }) .then(response => { console.log('Submit successful:', response); this.$message.success('操作成功'); }) .catch(error => { console.error('Error during submission:', error); this.$message.error('操作失败,请重试'); }) .finally(() => { this.isSubmitting = false; // 恢复按钮可用状态 }); } } ``` 此方法可以有效阻止用户连续点击提交按钮[^1]。 #### 2. 利用防抖或节流技术 对于频繁触发的操作(如键盘输入、鼠标移动),可采用防抖或节流策略减少不必要的 API 请求次数。虽然此处主要针对单次提交场景,但在某些复杂交互下仍适用。 ```javascript import _ from 'lodash'; export default { methods: { handleDebouncedSubmit: _.debounce(function () { this.handleSubmit(); }, 300), submitAction() { this.handleDebouncedSubmit(); // 调用防抖后的函数 }, async handleSubmit() { try { await axios.post('/api/endpoint', {}); this.$message.success('Success!'); } catch (error) { this.$message.error('Failed to process request.'); } } } }; ``` 上述代码展示了如何利用 Lodash 的 debounce 方法延迟执行实际逻辑[^2]。 #### 3. 清理复选框状态 当完成一次批量处理后,应主动清理已勾选项以防干扰后续操作。可通过手动干预的方式达到目的。 ```javascript clearSelections() { this.$refs.table.clearSelection(); // 假设 ref 名称为 table }, async batchProcessRecords(ids) { let result = null; try { result = await someApiCall(ids); // 替换为真实的服务端调用 } finally { this.clearSelections(); // 不论成败均需释放当前选择项 } return result; } ``` 这里假设使用的第三方库支持类似的 clearSelection 接口;如果不具备,则可能要借助其他途径间接达成目标[^3]。 #### 4. 数据同步更新 确保本地数据模型始终反映最新服务器返回的结果集,从而避免因缓存等原因造成的冲突现象发生。 ```javascript updateLocalData(newItems) { this.items.forEach((item, index) => { newItems.some(updatedItem => updatedItem.id === item.id && Object.assign(this.items[index], updatedItem)) }); } // Example usage inside a method handling server responses. fetchAndUpdateRemoteState(filterParams={}) { apiService.getItemsByCriteria(filterParams).then(fetchedList=>{ this.updateLocalData(fetchedList); }).catch(err=>console.warn(`Unable to refresh list due to ${err}`)); } ``` 这段脚本片段强调了保持前后端一致性的重要性[^4]。 --- ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值