我有表单使用无线电来交换选择列表,但验证消息似乎无法正常工作。 这是我的表单,TypeA验证消息是有效的:
如果我单击“提交”按钮并且TypeA验证不正确并且我更改为TypeB以提交它,则验证将不会通过,因为它看起来只是验证TypeA ...
这是我的代码:
<form id="form" @submit.prevent="validateBeforeSubmit">
<label>Type A</label>
<input type="radio" v-model="Type" value="TypeA" />
<label>Type B</label>
<input type="radio" v-model="Type" value="TypeB" />
<table>
<tr v-if="Type==='TypeA'">
<td>
<select v-model="TypeA" v-validate="'required|not_in:Choose'" name="TypeA">
<option v-for="option in TypeAOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeA')">
{{ errors.first('TypeA')}}
</span>
</td>
</tr>
<tr v-if="Type==='TypeB'">
<td>
<select v-model="TypeB" v-validate="'required|not_in:Choose'" name="TypeB">
<option v-for="option in TypeBOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeB')">
{{ errors.first('TypeB')}}
</span>
</td>
</tr>
</table>
<button type="submit">Submit</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vee-validate@latest/dist/vee-validate.js"></script>
<script>
Vue.use(VeeValidate);
var form = new Vue({
el: '#form',
data: {
Type: 'TypeA',
TypeA: 'Choose',
TypeAOptions: [{
value: 'Choose'
},
{
value: 'A',
},
{
value: 'B'
},
{
value: 'C'
},
{
value: 'D'
}
],
TypeB: 'Choose',
TypeBOptions: [{
value: 'Choose'
},
{
value: '1'
},
{
value: '2'
},
{
value: '3'
},
{
value: '4'
}
],
},
methods: {
validateBeforeSubmit() {
this.$validator.validateAll().then((result) => {
if (result) {
alert("Submit Success");
return;
}
alert("Correct them errors!");
});
}
}
})
</script>
我不知道如何解决这个问题,有人能帮帮我吗?
答案 0 :(得分:6)
使用v-show
代替v-if
来观看更改,因为v-if
在DOM中添加/删除dom元素和vee-validate检查。
<form id="form" @submit.prevent="validateBeforeSubmit">
<label>Type A</label>
<input v-on:change="changeType" type="radio" v-model="Type" value="TypeA" />
<label>Type B</label>
<input v-on:change="changeType" type="radio" v-model="Type" value="TypeB" />
<table>
<tr v-show="Type==='TypeA'">
<td>
<select v-model="TypeA" v-validate="'required|not_in:Choose'" name="TypeA">
<option v-for="option in TypeAOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeA')">
{{ errors.first('TypeA')}}
</span>
</td>
</tr>
<tr v-show="Type==='TypeB'">
<td>
<select v-model="TypeB" v-validate="'required|not_in:Choose'" name="TypeB">
<option v-for="option in TypeBOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeB')">
{{ errors.first('TypeB')}}
</span>
</td>
</tr>
</table>
<button type="submit">Submit</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vee-validate@latest/dist/vee-validate.js"></script>
<script>
Vue.use(VeeValidate);
var form = new Vue({
el: '#form',
data: {
Type: 'TypeA',
TypeA: 'Choose',
TypeAOptions: [{
value: 'Choose'
},
{
value: 'A',
},
{
value: 'B'
},
{
value: 'C'
},
{
value: 'D'
}
],
TypeB: 'Choose',
TypeBOptions: [{
value: 'Choose'
},
{
value: '1'
},
{
value: '2'
},
{
value: '3'
},
{
value: '4'
}
],
},
computed:{
},
methods: {
changeType:function(){
this.errors.clear();
},
validateBeforeSubmit() {
this.$validator.validate(this.Type).then((result) => {
if (result) {
alert("Submit Success");
return;
}
alert("Correct them errors!");
});
}
}
})
</script>
&#13;
此外,您正在验证所有字段均意味着两个下拉列表都在验证。
使其成功。意味着一次只验证一个下拉列表我改变了这一行。 从
this.$validator.validateAll()
要
this.$validator.validate(this.Type)
答案 1 :(得分:2)
此答案仅用于更新需要对Niklesh Raut的答案进行的一些更改,这是原始答案,并在当时正确回答了该问题。 由于那段时间vee-valdiate已更新为V3.0,因此需要将vee-validate的CDN指定为V2.0的最新版本。根据此链接https://github.com/logaretm/vee-validate/issues/1351,vee验证规则“ not_in”也重命名为“ excluded”。 因此,这些较小的更改将使Niklesh Raut的代码再次运行。非常感谢他和 分别用于答案和问题的OP。如果您觉得有用,请考虑投票给他们的答案和问题。此答案仅适用于vee-validate V2。
<form id="form" @submit.prevent="validateBeforeSubmit">
<label>Type A</label>
<input v-on:change="changeType" type="radio" v-model="Type" value="TypeA" />
<label>Type B</label>
<input v-on:change="changeType" type="radio" v-model="Type" value="TypeB" />
<table>
<tr v-show="Type==='TypeA'">
<td>
<select v-model="TypeA" v-validate="'required|excluded:Choose'" name="TypeA">
<option v-for="option in TypeAOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeA')">
{{ errors.first('TypeA')}}
</span>
</td>
</tr>
<tr v-show="Type==='TypeB'">
<td>
<select v-model="TypeB" v-validate="'required|excluded:Choose'" name="TypeB">
<option v-for="option in TypeBOptions" v-bind:value="option.value">
{{ option.value }}
</option>
</select>
<span v-if="errors.has('TypeB')">
{{ errors.first('TypeB')}}
</span>
</td>
</tr>
</table>
<button type="submit">Submit</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vee-validate@2.2.15/dist/vee-validate.js"></script>
<script>
Vue.use(VeeValidate);
var form = new Vue({
el: '#form',
data: {
Type: 'TypeA',
TypeA: 'Choose',
TypeAOptions: [{
value: 'Choose'
},
{
value: 'A',
},
{
value: 'B'
},
{
value: 'C'
},
{
value: 'D'
}
],
TypeB: 'Choose',
TypeBOptions: [{
value: 'Choose'
},
{
value: '1'
},
{
value: '2'
},
{
value: '3'
},
{
value: '4'
}
],
},
computed:{
},
methods: {
changeType:function(){
this.errors.clear();
},
validateBeforeSubmit() {
this.$validator.validate(this.Type).then((result) => {
if (result) {
alert("Submit Success");
return;
}
alert("Correct them errors!");
});
}
}
})
</script>