我一直在构建一个vue应用程序,而且我目前正在构建一个拥有" Person"对象和一些输入字段,用于添加有关该人的信息,例如姓名,地址,电子邮件等。其中一个字段是手机号码,但一个人可以有多个号码,因此我创建了一个自定义组件,随意重复输入字段。这大致就是它的样子。所有这些输入都使用vee validate进行验证。这大概就是这样的:
<!--createPerson.vue -->
<div class="form-group">
<input v-model="person.firstName" v-validate="'required'" data-vv-delay="500" name="first-name" type="text" placeholder="First name">
<span v-show="errors.has('first-name')" class="input__error">{{ errors.first('first-name') }}</span>
</div>
<div class="form-group">
<input v-model="person.lastName" v-validate="'required'" data-vv-delay="500" name="last-name" type="text" placeholder="Last name">
<span v-show="errors.has('last-name')" class="input__error">{{ errors.first('last-name') }}</span>
</div>
<repeatable-inputs v-model="person.mobiles" v-validate="'required'" data-vv-value-path="input" data-vv-name="mobile" type="tel" name="mobile" placeholder="Mobile" :inputmode="numeric" link-name="mobile number"></repeatable-inputs>
<div class="form-group">
<input v-model="person.email" v-validate="'required|email'" data-vv-delay="500" name='email' type="text" placeholder="Personal email">
<span v-show="errors.has('email')" class="input__error">{{ errors.first('email') }}</span>
</div>
person对象在同一个createPerson.vue文件下有一个名为mobiles的属性,它以一个空数组开头。它还有一个validateAll()函数,用于vee-validate文档中描述,它在单击&#34; Next&#34;时执行所有输入的验证。按钮。 然后,在repeatableInputs.vue上,有这个:
<template>
<div>
<div class="form-group" v-for="(input, index) in inputs">
<input
:type="type"
:name="name+index"
:placeholder="placeholder"
:inputmode="inputmode"
:value="input"
@input="update(index, $event)"
v-focus></input>
</div>
<a href="#" v-on:click.prevent="add">Add another {{linkName}}</a>
</div>
</template>
<script>
export default {
props: {
value: {
type: Array,
default: ['']
},
type: {
type: String,
default: "text"
},
name: String,
placeholder: String,
inputmode: String,
linkName: {
type: String,
default: "input"
}
},
data: function () {
return {
inputs: this.value
}
},
methods: {
add: function () {
this.inputs.push('');
},
update: function(index, e) {
this.inputs[index] = e.target.value;
this.$emit('input', this.inputs);
}
}
}
</script>
为了能够使用validateAll()函数在父createPerson.vue中验证这些自定义输入,文档说明我必须引用Should have a data-vv-value-path attribute which denotes how to access the value from within that component (Needed for validateAll calls)
。
这就是我被卡住的地方。我不确定vv-path必须指向哪个,我尝试使用&#39; value&#39;,&#39;输入&#39;,&#39;输入&#39;,创建监视功能,以及其他一些甚至没有多大意义的事情。我发现了一个git问题,用于验证使用v-for的自定义输入,但显然已经修复了。
答案 0 :(得分:1)
Data-vv-value-path应指向数据在组件状态内的位置。在输入上,您可以使用v-model -attribute将输入内容绑定到数据,然后验证程序知道它需要验证的子组件的哪个属性。
因此,data-vv-value-path指向子组件内的数据,当与v-model绑定时,数据将自动更新。