作为初学者在VUE表单验证遇到一个大坑

onSubmitaddForm:function( formName ){
            let _t = this;
            this.$refs[formName].validate((valid) => {
                console.log(123);
                console.log(valid);
                if(valid){
                    axios.post("", {

                    })
                    .then(function (response) {
                        if(response.code == 200){
                            _t.message(response.msg, 'success');
                            _t.$emit('');
                            _t.dialogNewteam = false;
                        } else {
                            _t.message(response.msg, 'error');
                            return false;
                        }
                    });
                }
            });
        },
  1. valid为false时可执行console.log();
  2. 表单验证都通过时 console.log() 不执行 , 没有任何反应
  3. 原因是在自定义表单参数验证时 , 验证通过后一定要 添加callback();
  4. 验证通过  callback()
  5. 验证不通过  callback(new Error("提示信息"))

以下是一个完整的自定义手机号码验证 : 

Logo

前往低代码交流专区

更多推荐