• vue表单校验提交报错TypeError: Cannot read property 'validate' of undefined


    TypeError: Cannot read property 'validate' of undefined at VueComponent.submitForm (plat_users.html:385) at Proxy.boundFn (vue.js:130) at click (eval at makeFunction (vue.js:8480), <anonymous>:2:5611) at VueComponent.invoker (vue.js:1948) at VueComponent.Vue.$emit (vue.js:2549) at VueComponent.handleClick (element-ui.js:3) at boundFn (vue.js:130) at HTMLButtonElement.invoker 

    原因是 @click="submitForm(ruleForm)" 中的 ruleForm 没有使用引号。

    正确写法:

    <el-button type="primary" @click="submitForm('ruleForm')">提交</el-button>

    你必须穷尽一生磨练技能,这就是成功的秘诀,也是让人家敬重的关键。
  • 相关阅读:
    10月6日动手动脑
    10月5日
    SQL
    bug 对应
    @OneToMany
    SQL Constraints
    SQL级联删除——删除主表同时删除从表——同时删除具有主外键关系的表
    子父表
    取字符串
    SQL中MAX()
  • 原文地址:https://www.cnblogs.com/knuzy/p/10267660.html
Copyright © 2020-2023  润新知