Property 'validate' does not exist on type 'Vue | Element | Vue[] | Element[]'
环境: vue2.5.2+element-ui2.2.2 +TypeScript位置: 在提交from 表单验证时//在这开始报错this.type = 'test'this.$refs['form'].validate(valid => {... ...})错误信息:分析原因: Property ‘validate’ does not exist on typ...
·
环境: 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)=> {
... ...
})
更多推荐
已为社区贡献5条内容
所有评论(0)