提交表单后,表单数据没有清空,会造成用户体验差,所以需要在提交表单后清空表单中的数据
回答
小泽回答
- WXML
<form bindsubmit="submitForm">
<text class="key">内容<text>
<input name="title" maxlength="100" value="{{title}}" />
<button formType="submit">提交button>
form>
- JS
submitForm:function(e){
var title = e.detail.value.title;
......
success: function (res) {
//将title值设置空
that.setData({
title: ''
}
}
}
(0)