這次帶給大家vue按鈕多次點擊重複提交資料如何處理,處理vue按鈕多次點擊重複提交資料的注意事項有哪些,以下就是實戰案例,一起來看一下。
這個其實是一個很細節的問題。如果我們操作一個按鈕,然後在按鈕點擊的時候綁定事件。
事件分為兩種情況:
•第一種: 不操作資料型別
#•第二種: 操作資料型
<template> <button @click="submit()" :disabled="isDisable">点击</button> </template> <script> export default { name: 'TestButton', data: function () { return { isDisable: false } }, methods: { submit() { this.isDisable = true setTimeout(() => { this.isDisable = false }, 1000) } }, } </script>
這裡我們透過控制isDisable 來設定disabled來控制按鈕的點擊和不可點擊。預設isDisable:的值為 false,按鈕可以點選。當我們點擊這個按鈕的時候,首先將按鈕的綁定isDisable設為true,1秒後立刻將其置為false。所以使用者只能有一秒的時間去操作這個按鈕。
下面補充一個實例代碼
vue中button 多次點擊重複提交的實例代碼
sendComment () { this.disabled = true if (this.text == ''){ this.$message({ type:'error', message:'输入内容不能为空', }) this.disabled = false }else{ this.$post('/xx/xx/IdleGoodsComment',{ goods_id:this.$route.params.id, content:this.text, user_id:window.uId, type:1 }).then((res) => { if(res){ this.getDetail() setTimeout(()=>{ this.disabled=false this.getCommentList() this.text = ''} ,2000) this.disabled = true } }) } }
實現原理:透過計時器講button屬性更改,點擊完之後講button屬性設定為disable
vue綁定button的disable屬性為:disabled:'變數名稱'
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是vue按鈕多次點擊重複提交資料如何處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!