sumbitClick(){ let type = this.data.current; if(type=='0'){ console.log('您点击了注册监听') } if(type=='1'){ console.log('您点击了登录监听') } },这段代码应该放到下面这段代码中去么// index.js Page({}) Page({ /** * 页面的初始数据 */ data: { current:1, codeText:'获取验证码', counting:false, }, // 登陆注册监听 click(e){ let index = e.currentTarget.dataset.code; this.setData({ current:index }) }, //获取验证码 getCode(){ var that = this; if (!that.data.counting) { wx.showToast({ title: '验证码已发送', }) //开始倒计时60秒 that.countDown(that, 60); } }, //倒计时60秒 countDown(that,count){ if (count == 0) { that.setData({ codeText: '获取验证码', counting:false }) return; } that.setData({ counting:true, codeText: count + '秒后重新获取', }) setTimeout(function(){ count--; that.countDown(that, count); }, 1000); }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady() { }, /** * 生命周期函数--监听页面显示 */ onShow() { }, /** * 生命周期函数--监听页面隐藏 */ onHide() { }, /** * 生命周期函数--监听页面卸载 */ onUnload() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh() { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom() { }, /** * 用户点击右上角分享 */ onShareAppMessage() { } })
时间: 2023-12-06 13:43:38 浏览: 76
this.$toast() 了解一下?
是的,应该将`sumbitClick()`函数放在`Page({})`对象中。将代码添加到`Page({})`对象中后,您可以通过在模板中添加按钮,然后绑定`sumbitClick()`函数来触发该函数。例如:
```
<view>
<button bindtap="submitClick">提交</button>
</view>
```
阅读全文