gpt4 book ai didi

vue.js - 验证子组件 Vue vee-validate

转载 作者:搜寻专家 更新时间:2023-10-30 22:18:47 24 4
gpt4 key购买 nike

应用(父级)

嗨,我有这些组件(子)文本组件信息错误表单

当我从父组件 App 按下提交时,未验证此表单。因此,我尝试通过在子组件 (TextComponent) 中注入(inject) $validator 进行验证,并提供但不显示消息错误。如果你能帮我验证父组件中的子表单。 这是我的代码

应用组件

<template>
<div>
<!-- Form validar numero max input -->
<form :class="{'was-validated': error_in_form_save_progress}" >

<card-shadow v-for="(texto,key) in sections_template.texts" :key="key" >
<texto-component
:orden="key+2"
v-model="sections_template.texts[key].content"
:tituloComponente="texto.title"
:inputName="texto.title" >
<template slot="section_show_error_validate_input">
<info-error-form
:listErrors='errors'
:name_field = "texto.title"
v-show = "error_in_form_save_progress" >
</info-error-form>
</template>
</texto-component>
</card-shadow>

</form>

<div class="row foot_button" >
<div class="offset-md-3 col-md-3">
<button class="btn" @click.prevent="save_progrees"> Guardar Cambios</button>
</div>

</div>
</div>
</template>

<script>

export default {

provide() {
return {
$validator: this.$validator,
};
},
data: function(){
return {
sections_template: {
texts:[
{
section_template_id: 1,
type: "texto",
title: "fundamentacion",
content: ""
},
{
section_template_id: 2,
type: "texto",
title: "sumilla",
content: ""
}
] },
error_in_form_save_progress: true
}
},
methods:{
save_progrees(){
this.$validator.validateAll().then((result) => {
if (result) {
this.error_in_form_save_progress = false;
alert("se guardaran cambios");
return
}
this.error_in_form_save_progress = true;
});

}
}
}
</script>

最佳答案

我用这段代码找到了解决方案。在我的父组件中,我添加了 provide 并发送了 $validator

export default {
components:{
...
},
provide() {
return {
$validator: this.$validator,
}
},

在我的子组件中我收到了这个

inject: ['$validator'],

在我的父组件中,我将此方法添加到调用验证

 methods:{
save_progrees(){
var validationArray = this.$children.map(function(child){
return child.$validator.validateAll();
});

window.Promise.all(validationArray).then((v) => {
v.some( element => { if ( element == false ) { throw "exists error in child component";} });
this.error_in_form_save_progress = false;
alert("datos guardados");
return
}).catch(() => {
this.show_message_error_validation();
});

},
show_message_error_validation(){
this.error_in_form_save_progress = true;

}
}

最后为了在组件信息错误中显示错误,我使用了这段代码

<template>
<div class="row" v-if="errors.items">
<div class="col-md-12">
<template v-for="(e,key) in errors.items" >
<div class="text-danger" v-if="e.field ==name_field" :key="key"> {{e.msg}} </div>
</template>
</div>
</div>
</template>

关于vue.js - 验证子组件 Vue vee-validate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52772567/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com