微信小程序如何清空当前页面数据 微信小程序怎么清空数据

主机教程 建站分享 2年前 (2022-11-21) 338次浏览

文章摘要:微信小程序如何清空当前页面数据 微信小程序怎么清空数据

微信小程序清空当前页面数据的案例: 1.在wmxl文件添加以下代码。 <form bindre […]

微信小程序清空当前页面数据的案例:

1.在wmxl文件添加以下代码。

<form bindreset='changeReset'>

    <input name='name' type='text' placeholder='姓名' bindinput='addName'></input>

    <input name='phone' type='number' maxlength='11' placeholder='电话' bindinput='addPhone'></input>

    <button from-type='reset' bindtap='openToast' wx:if='{{panduan==0}}'>确认提交</button> 

    <button from-type='reset' bintap='sendData' wx:else>确认提交</button>

</form>

2.在js文件添加以下代码。

const db = wx.cloud.database().collection('data')

let name

let phone

data:{

    panduan:0,

},

addName:function(event){

    name=event.detail.value

    this.setData({

        panduan:1,

    })

},

addPhone:function(event){

    phone=event.detail.value

    })

},

sendData:function(){

    db.add({

        data:{

            name:name,

            phone:phone,

        },

        success:function(res){

            wx.showToast({

                title:'提交成功!',

                icon:'success',

                duration:1500

            })

        }

    })

},

openToast:function(){

    wx.showToast({

        title:'请输入信息!',

        icon:'none',

    })

},

changeReset:function(){

    this.setData({

        panduan:0,

    })

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:微信小程序如何清空当前页面数据 微信小程序怎么清空数据
文章链接:http://www.7966.org/post/13002.html
转载请注明出处

喜欢 (0)