您好,登錄后才能下訂單哦!
這個其實是一個很細節的問題。 如果我們操作一個按鈕,然后在按鈕點擊的時候綁定事件。
事件分為兩種情況:
•第一種: 不操作數據型
•第二種: 操作數據型
<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:'變量名'
總結
以上所述是小編給大家介紹的vue 按鈕多次點擊重復提交數據問題,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。