web-dev-qa-db-fra.com

Valider le composant enfant Vue vee-validate

App (parent)

Salut, j'ai ces composants (enfants) TextComponent InfoErrorForm

Lorsque j'appuie sur soumettre à partir du composant parent, l'application ne valide pas ce formulaire. J'ai donc essayé de valider avec inject $ validator dans le composant enfant (TextComponent), et de fournir une erreur de message mais pas d'afficher. Si vous pouvez m'aider à valider les enfants du composant parent inisde. C'est mon code

AppComponent

<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>
6
HalleyRios

Je solutionne avec ce code Dans mon composant parent j'ajoute fournit et j'envoie le $ validateur

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

Dans ma composante enfant, j'ai reçu ce

inject: ['$validator'],

Dans mon composant parent, j'ajoute cette méthode à la validation invoque

 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;

      }
    }

Enfin pour montrer l'erreur dans le composant info-error j'utilise ce code

<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>
3
HalleyRios

Dans votre composant enfant, surveillez this.errors et dans la montre, mettez ceci. $ Emit Quelque chose comme ceci ci-dessous:

watch: {
  errors: function (value) {
    this.$emit('TextComponent', value)
  }
}

Et puis attrapez-le sur votre composant parent, voyez-le ici https://vuejs.org/v2/api/#vm-emit

0
Indra Kusuma