背景:vue框架,使用element-ui的表单,并且在提交时验证onSubmit(form) {
this.$refs[form].validate((valid) => {
if (valid) {
// submitForm() 就是上传表单的接口,请问这里如果不用.then(),我想直接写async/await该怎么办
this._submitForm().then(() => {
if (this.subCode == 200) {
this.$message({
message: this.subMsg,
type: 'success',
center: true
})
} else {
this.$message({
message: this.subMsg,
type: 'error',
center: true
})
}
})
} else {
console.log('错误提交')
}
})
}
添加回答
举报
0/150
提交
取消