微信小程序 checkbox使用实例解析
程序员文章站
2023-10-13 23:37:54
这篇文章主要介绍了微信小程序 checkbox使用实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
效果图如下:...
这篇文章主要介绍了微信小程序 checkbox使用实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
效果图如下:
实例代码如下:
type_add.js
// pages/detail_add/detail_add.js page({ /** * 页面的初始数据 */ data: { selectdata: "", //下拉列表的数据 height: 20, focus: false }, checkboxchange: function(e) { console.log('checkbox发生change事件,携带value值为:', e.detail.value) console.log("长度:" + e.detail.value.length); this.setdata({ typeid: e.detail.value, length: e.detail.value.length }) }, formsubmit: function(e) { console.log('form发生了submit事件,携带数据为:' + e.detail.value.amount + ", " + e.detail.value.typeid + ", " + this.data.remark + ", " + this.data.date + ", " + this.data.time); var amount = e.detail.value.amount; var typeid = this.data.typeid; var date = this.data.date; var time = this.data.time; var remark = e.detail.value.remark; var createdate = date + " " + time; var length = this.data.length; console.log("length:" + length); console.log("date:" + date); console.log("time:" + time); console.log("createdate:" + createdate) if (amount == null || amount == "") { wx.showtoast({ title: "支出金额不能为空", icon: 'none', duration: 1500 }) } else if (typeid == null || typeid == "") { wx.showtoast({ title: "支出类型不能为空", icon: 'none', duration: 1500 }) } else if (length >= 2) { wx.showtoast({ title: "支出类型只能选择一种", icon: 'none', duration: 1500 }) } else if (date == null || date == "") { wx.showtoast({ title: "日期不能为空", icon: 'none', duration: 1500 }) } else if (time == null || time == "") { wx.showtoast({ title: "时间不能为空", icon: 'none', duration: 1500 }) } else if (remark == null || remark == "") { wx.showtoast({ title: "备注不能为空", icon: 'none', duration: 1500 }) } else { wx.request({ url: getapp().globaldata.urlpath + "spendingdetail/add", method: "post", data: { amount: amount, typeid: typeid, createdate: createdate, remark: remark }, header: { "content-type": "application/x-www-form-urlencoded" }, success: function(res) { console.log(res.data.code); if (res.statuscode == 200) { //访问正常 if (res.data.code == "000000") { wx.showtoast({ title: "添加支出详情成功", icon: 'success', duration: 3000, success: function() { wx.navigateto({ url: '../detail/detail' }) } }) } } else { wx.showloading({ title: '系统异常', fail }) settimeout(function() { wx.hideloading() }, 2000) } } }) } }, formreset: function() { console.log('form发生了reset事件') }, binddatechange: function(e) { console.log('picker发送选择改变,携带值为', e.detail.value) this.setdata({ date: e.detail.value }) }, bindtimechange: function(e) { console.log('picker发送选择改变,携带值为', e.detail.value) this.setdata({ time: e.detail.value }) }, /** * 生命周期函数--监听页面加载 */ onload: function(options) { wx.setnavigationbartitle({ title: "添加支出详情" }) var usercode = wx.getstoragesync('userid').tostring(); var self = this; wx.request({ url: getapp().globaldata.urlpath + "spendingtype/types", //json数据地址 data: { usercode: usercode }, headers: { "content-type": "application/x-www-form-urlencoded" }, success: function(res) { console.log("res.data.data.typename:" + res.data.data) self.setdata({ selectdata: res.data.data }) } }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onready: function() { }, /** * 生命周期函数--监听页面显示 */ onshow: function() { }, /** * 生命周期函数--监听页面隐藏 */ onhide: function() { }, /** * 生命周期函数--监听页面卸载 */ onunload: function() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onpulldownrefresh: function() { }, /** * 页面上拉触底事件的处理函数 */ onreachbottom: function() { }, /** * 用户点击右上角分享 */ onshareappmessage: function() { } })
type_add.wxml:
<form bindsubmit="formsubmit" bindreset="formreset"> <view class="section"> <text>支出金额</text> <input name="input" name="amount" placeholder="请输入支出金额" /> </view> <view class="section"> <text>支出类型</text> <checkbox-group bindchange="checkboxchange"> <label class="checkbox" wx:for="{{selectdata}}"> <checkbox value="{{item.typeid}}" checked="{{item.checked}}" />{{item.typename}} </label> </checkbox-group> </view> <view> <text>创建时间</text> <view class="section"> <picker mode="date" value="{{date}}" start="2018-09-01" end="2030-09-01" bindchange="binddatechange"> <view class="picker"> 选择日期: {{date}} </view> </picker> </view> <view class="section"> <picker mode="time" value="{{time}}" start="00:00=" end="23:59" bindchange="bindtimechange"> <view class="picker"> 选择时间: {{time}} </view> </picker> </view> </view> <view class="section"> <text>备注</text> <input name="input" name="remark" placeholder="请输入备注" /> </view> <view> <text>\n</text> </view> <view class="btn-area"> <button form-type="submit">提交</button> <view> <text>\n</text> </view> <button form-type="reset">重置</button> </view> </form>
bindchange=”checkboxchange” 相当于js中的onchange事件。
上述中的form表单基本就是参考官方文档改的。
有一段代码还是要提一下:
self.setdata({ selectdata: res.data.data })
self其实相当于this,意为当前。每次触发事件,对应的值都会进行存储,用于与后台通信进行数组传递,
type_add.wxss:
/* pages/login/login.wxss */ form{ width: 310px; height: 240px; line-height: 40px; /* border: 1px solid red; */ } input{ border: 1px solid #ccc; width: 310px; height: 40px; } .button{ margin-top: 20px; } .header text{ font-size: 25px; color: #666; } form text{ font-size: 20px; color: #666; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Python基础(三)
下一篇: 如何提交多个具有相同name属性的表单