elementplus 提交表单报formEl.validate is not a function?

作者站长头像
站长
· 阅读数 8

elementplus 提交表单报formEl.validate is not a function?

const formRef = ref<FormInstance>();

const submitForm = (formEl: FormInstance | undefined) => {
  if (!formEl) return;
  console.log(formEl);
  formEl.validate((valid: boolean) => {
    if (valid) {
      window.localStorage.setItem("aaa", JSON.stringify(formModel));
    }
  });
};

输出的formEl是这样?elementplus 提交表单报formEl.validate is not a function?

代码是按照官方示例写的不知道有什么问题?

回复
1个回答
avatar
test
2024-07-06

你的 <el-form> 元素上没有使用 ref 绑定啊,自然就没有表单实例了。

一个简略版的官方示例:

<template>
  <el-form
    ref="ruleFormRef"
    :model="ruleForm"
    :rules="rules"
    label-width="120px"
    class="demo-ruleForm"
    :size="formSize"
    status-icon
  >
    <el-form-item>
      <el-button type="primary" @click="submitForm(ruleFormRef)">
        Create
      </el-button>
      <el-button @click="resetForm(ruleFormRef)">Reset</el-button>
    </el-form-item>
  </el-form>
</template>

<script lang="ts" setup>
import { reactive, ref } from 'vue'
import type { FormInstance, FormRules } from 'element-plus'

const formSize = ref('default')
const ruleFormRef = ref<FormInstance>()


const submitForm = async (formEl: FormInstance | undefined) => {
  if (!formEl) return
  await formEl.validate((valid, fields) => {
    if (valid) {
      console.log('submit!')
    } else {
      console.log('error submit!', fields)
    }
  })
}
</script>
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容