我在 vee-validate 中遇到自定义验证问题。我有这个方法,它正在检查我的数据库中是否已经存在电子邮件,但我不断收到错误Error in callback for watcher "email": "TypeError: Cannot read property 'then' of undefined"
这是我的 HTML 代码,其中包含验证 emailAlreadyExists
<div class="prepend-icon">
<p :class="{ 'control': true }">
<input v-validate="'required|email|emailAlreadyExists'"
:class="{
'form-control input-lg': true,
'input': true,
'is-danger': errors.has('email')
}"
name="email" type="email"
v-bind:placeholder="$root.trans.translate('enterYourEmail')"
v-model="email"
/>
<i class="nc-icon-outline ui-1_email-83"></i>
<span v-show="errors.has('email')" class="help-block with-errors">
{{ errors.first('email') }}
</span>
</p>
</div>
这是我在创建方法中的验证
created() {
this.$validator.extend('emailAlreadyExists', {
getMessage: field => field + 'Email already exists.',
validate: value => {
let params = new URLSearchParams();
params.append('email', value);
this.$http.post(this.$apiUrl + `rest/api/public/User/checkIfUserExists`, params, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
}
})
}
})
}
您可以在此处查看整个文件: PasteBinLink
有人可以指出我做错了什么,我不断收到这个错误吗?如果您需要任何其他信息,请告诉我,我会提供。谢谢!