我正在使用带有vuelidate库的VueJS2。我可以根据验证对象验证字段。验证将在计算时间内执行。但我的验证对象是固定的,而不是动态的。我根据选择隐藏了一些字段。
import { validationMixin } from 'vuelidate'
import { required, maxLength, email } from 'vuelidate/lib/validators'
export default {
mixins: [validationMixin],
validations: {
company_name: { required },
company_position_title: { required }
},
methods: {
submit(){
this.$v.touch();
if(this.$v.$invalid == false){
// All validation fields success
}
}
}
}
HTML
<v-select
label="Who are you?"
v-model="select" // can be 'company' or 'others'
:items="items"
:error-messages="selectErrors"
@change="$v.select.$touch();resetInfoFields();"
@blur="$v.select.$touch()"
required
></v-select>
<v-text-field
label="Company Name"
v-model="company_name"
:error-messages="companyNameErrors"
:counter="150"
@input="$v.companyName.$touch()"
@blur="$v.companyName.$touch()"
v-show="select == 'Company'"
></v-text-field>
<v-text-field
label="Company Position Title"
v-model="company_position_title"
:error-messages="companyPositionErrors"
:counter="150"
@input="$v.companyPosition.$touch()"
@blur="$v.companyPosition.$touch()"
v-show="select == 'Company'"
></v-text-field>
<v-btn @click="submit">submit</v-btn>
问题
当我选择“其他”选项并点击提交时,this.$v.$invalid
仍然是正确的。它应该是错误的,因为不需要验证字段。
当我选择“公司”时,必须要求并验证这两个字段。
答案 0 :(得分:3)
您需要动态验证架构
validations () {
return {
if (!this.select === 'company') {
company_name: { required },
company_position_title: { required }
}
// other validations
}
}
答案 1 :(得分:0)
另一种方法是使用requiredIf
itemtocheck: {
requiredIf: requiredIf(function () {
return this.myitem !== 'somevalue'
}),
minLength: minLength(2) },