在wxml中设计了一个form表单,使用formSubmit提交,进不了函数中,里面的console.log("测试")都没有出来,提示:does not have a method "formSumbit" to handle event "submit"
wxml中代码如下:
<form bindsubmit="formSumbit" bindreset="formReset">
<view class="cu-form-group">
<view class="title">昵称</view>
<input value="{{nickName}}" class="input-text" placeholder="{{userInfoData.nickName}}" type="nickname"></input>
</view>
<button class="form-btn" type="primary" form-type="submit">保存</button>
</form>
在.js文件中,代码如下:
formSubmit() {
//todo 保存个人设置
const formUserData = {
nickName:this.data.nickName,
}
console.log('点击保存了')
console.log(formUserData.nickName)
}