调用子组件中的方法,明明定义了还报“Cannot read properties of undefined (reading 'fullValidEvent')”

在修改页面,在父组件中直接调用子组件中的方法,通过ref来调用。明明在子组件中定义了这个方法,还一直报undefined

if (this.form.receivingType == 0) {
          await this.$refs.editTable1.fullValidEvent()
        } else if (this.form.receivingType == 1) {
          await this.$refs.editTable2.fullValidEvent()
        } else if (this.form.receivingType == 2) {
          await this.$refs.editTable3.fullValidEvent()
        }

image

我就尝试先确定存在这个组件才调用这个方法,果然这样可以

if (this.form.receivingType == 0) {
          this.$refs['editTable1'] && await this.$refs['editTable1'].fullValidEvent()
        } else if (this.form.receivingType == 1) {
          this.$refs['editTable2'] && await this.$refs['editTable2'].fullValidEvent()
        } else if (this.form.receivingType == 2) {
          this.$refs['editTable3'] && await this.$refs['editTable3'].fullValidEvent()
        }
posted @   嘿!那个姑娘  阅读(2390)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示