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

标签 vue.js vuejs2 vue-component vee-validate

应用(父级)

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

当我从父组件 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/

相关文章:

vue.js - Vue - 多个可选的路由器参数

javascript - 建议如何简化此 if 语句

javascript - 从 javascript 代码读取内部类属性

javascript - 使用 Object 属性作为 VueJS 数据表中的字段值

javascript - 如何更改 vue-cli 的分隔符?

javascript - 无法更新 Apexcharts 组件值

javascript - 验证 : 2 rows in a card

vuejs2 - VueJS 中的 Props 发生变化时重新加载组件

javascript - ajax更新数据时无法更新v-for列表

javascript - Vue.js - 如何在子组件中渲染数据更改?