小程序input组件上有一个方法上有一个方法叫做 bindinput
wxml:
<input type='text' placeholder="请输入真实姓名" value='{{name}}' bindinput='formName' />
js
formName:function(e){
this.setData({
name:e.detail.value
})
},
提交案例
sureEdit(){
xdhttp.postRequest(app.globalData.basePath + '/bossHelper/myCenter/updateUserInfo', {
"us_name": this.data.us_name,
"us_phone": this.data.us_phone,
"us_sex": this.data.us_sex,
"ei_logo": this.data.ei_logo,
}, function(res) {
wx.showToast({
title: res.msg,
icon: 'none',
});
}, function(res) {
console.log("fail:" + res);
})
}