大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文实例讲述了微信小程序实现提交input信息到后台的方法。分享给大家供大家参考,具体如下:
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名申请、网络空间、营销软件、网站建设、迭部网站维护、网站推广。
wxml文件:
您的姓名 所属部门 联系电话 选择日期 {{date}} 开始时间 {{starttime}} 结束时间 {{endtime}}
js代码:
var util = require('../../utils/util.js') //引入微信自带的日期格式化 const app = getApp() Page({ data: { date:util.formatDate(new Date), //格式化日期 starttime: '9:00', //开始时间 endtime: '21:00', //结束时间 userName: '', userBranch: '', userTell: '' }, bindDateChange: function (e) { this.setData({ date: e.detail.value }) }, starttime: function (e) { this.setData({ starttime: e.detail.value }) }, endtime: function (e) { this.setData({ endtime: e.detail.value }) }, userNameInput: function (e) { // console.log(e.detail.value)设置用户名 this.setData({ userName: e.detail.value }) }, userBranchInput: function (e) { //设置部门 this.setData({ userBranch: e.detail.value }) }, userTellInput: function (e) { //设置电话 this.setData({ userTell: e.detail.value }) }, orderMeeting: function () { //提交input信息到后台 var userName = this.data.userName; console.log(userName) var userBranch = this.data.userBranch; console.log(userBranch) var userTell = this.data.userTell; console.log(userTell) var date = this.data.date; console.log(userTell) } })
希望本文所述对大家微信小程序开发有所帮助。