vee-validate@4.x - 如何手动验证字段

vee-validate@4.x - how to manually validate field

正在使用

我遇到了以下问题:

<Form @submit="onSubmit" :validation-schema="schema">
  <div class="mb-3">
    <label for="edit-email" class="form-label">E-mail</label>
    <Field
      id="edit-email"
      class="form-control"
      name="email"
      type="text"
      :validateOnInput="true"
    />
    <ErrorMessage class="invalid-feedback" name="email" />
  </div>

  <button @click="checkEmail" type="button">Check e-mail address</button>


  <!-- non-important part of the form -->
</Form>

我想在单击按钮时手动 validate <Field />(应该会出现错误消息),然后我想使用该字段的 value 执行另一个操作。

我写了下面的代码:

import { useFieldValue } from 'vee-validate';

// setup
setup() {  
    const schema = object({ 
      email: string().required().email().label("e-mail"), 
    });
 
    function verifyEmail(v) {
      const emailValue = useFieldValue("email");
      console.log(emailValue); // empty ComputedRefImpl
    }

    return { 
      schema, 
      verifyEmail,
    };
  },
}

这是行不通的。 emailValue 作为 ComputedRefImpl 返回,具有 undefined 值。

我想我混合了组件和组合 API vee-validate 的风格。但是还是不知道怎么解决这个问题。

创建了沙盒:https://codesandbox.io/s/vue3-vee-validate-form-field-forked-xqtdg?file=/src/App.vue

任何帮助将不胜感激!

根据 vee-validate 的作者: https://github.com/logaretm/vee-validate/issues/3371#issuecomment-872969383

the useFieldValue only works as a child of a useForm or useField.

所以在使用<Field />组件时不起作用。