Property 'validate' does not exist on type 'Vue | Element | Vue[] | Element[]'
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
环境: vue2.5.2+element-ui2.2.2 +TypeScript
位置: 在提交from 表单验证时
//在这开始报错
this.type = 'test'
this.$refs['form'].validate(valid => {
... ...
})
错误信息:
分析原因: Property ‘validate’ does not exist on type ‘Vue | Element | Vue[] | Element[]’ 意思是说validate找不到,它不知道是哪个类型的属性,因为我们这里用到了TypeScript,而TypeScript 又是强类型检查所以报了这个错。
解决方案:
// 这样就不报错了
this.type = 'test'
(this.$refs['form'] as any).validate((valid : boolean)=> {
... ...
})
但是在接下来的运行中,又会报一个找不到表达式的错:
解决方案: 因为在js中()可以代表一个函数的调用属性,所以当 this.type = “test” 没有加 ‘;'号时,js会默认后面的()是“test"方法的调用属性。
如果不引入Form ,把Form 换成any 也是可以 的
// 最终代码
// 引入 element-ui 的 Form ,
import { Form } from "element-ui";
this.type = 'test'; // 加分号!
(this.$refs['form'] as Form).validate((valid : boolean)=> {
... ...
})
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)