我正在尝试禁用表单的“提交”按钮,直到为每个控件输入有效数据为止。
为每个字段输入正确的数据后,提交按钮保持禁用状态。
标记:
<div id="app">
<form action='#' method='POST'>
<div class="columns">
<div class="column">
<div class="field">
<div class="control">
<label class="label">Last Name</label>
<input v-validate="'required'" :class="{'input': true, 'is-danger': errors.has('lastname') }" class="input" name="lastname" type="text">
<span v-show="errors.has('lastname')" class="help is-danger">{{ errors.first('lastname') }}</span>
</div>
</div>
</div>
<div class="column">
<div class="field">
<div class="control">
<label class="label">Desk Number</label>
<input v-validate="'required'" :class="{'input': true, 'is-danger': errors.has('desknum') }" class="input" name="desknum" type="text">
<span v-show="errors.has('desknum')" class="help is-danger">{{ errors.first('desknum') }}</span>
</div>
</div>
</div>
</div>
<button :disabled='!isComplete' class="button is-link" name='submit_data' value='go'>Submit</button>
</form>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.16/vue.min.js">
<script src="https://cdnjs.cloudflare.com/ajax/libs/vee-validate/2.0.9/vee-validate.min.js">
<script>
Vue.use(VeeValidate);
new Vue({
el: "#app",
template: '#app',
data() {
return {
p_pat_name_first: null,
p_pat_name_last: null,
p_pat_date_birth: null,
p_pat_gender: null,
p_pat_twin: null,
p_emory_id: null,
p_mother_name_first: null,
p_mother_name_last: null,
p_parent_phone_primary: null,
};
},
computed: {
isComplete() {
return
this.p_pat_name_first &&
this.p_pat_name_last &&
this.p_pat_date_birth &&
this.p_pat_gender &&
this.p_pat_twin &&
this.p_mother_name_first &&
this.p_mother_name_last &&
this.p_parent_phone_primary;
}
}
});
</script>
我做错了什么,当表单完成且有效时,不允许“提交”按钮启用自身?
答案 0 :(得分:2)
简单地说,isComplete()
中的条件是指数据中与表格无关的值。表单中的所有字段都没有v-model
,因此更改它们对inComplete()
中引用的变量没有影响。
vee-validate中检查任何字段是否无效的正常方法是这样的:
<button :disabled="errors.any()" type="submit">Submit</button>
这只会在表单变得无效之后禁用“提交”按钮,因此在页面加载时,它会一直处于启用状态,直到用户对表单进行了使其无效的操作为止。
请参见此处的工作示例(其中一个输入已设置v模型):https://jsfiddle.net/ryleyb/v7a2tzjp/8/