this.$refs获取不到子元素身上的方法is not a function等问题

背景:使用v-for循环动态绑定ref,取值报错

问题控制台报错如下图:

this.$refs获取不到子元素身上的方法is not a function等问题_第1张图片

 可以确定的是,子组件上是有execSqlData的方法,那么为什么还会报is not a function呢?

分析:如果是动态的ref值取错了,那么会报 Cannot read properties of undefined,如下图:

this.$refs获取不到子元素身上的方法is not a function等问题_第2张图片

证明this.$refs[ref] 取到了值,只不过值身上没有execSqlData的方法,才会报 execSqlData is not a function.

控制台打印:这里不仔细看,都没发现是个数组

vue官方文档:

this.$refs获取不到子元素身上的方法is not a function等问题_第3张图片

问题解决: 

当 ref 和 v-for 一起使用的时候,用this.$refs[xxx][0] 获取子组件身上的值

this.$nextTick(() => {
    console.log(this.$refs[ref]);
    // 使用了v-for循环动态绑定ref,this.$ref[name]获取的是数组 
    // 因此this.$refs[name]改为this.$refs[name][0]
    this.$refs[ref][0].execSqlData(data);
});

 如果帮助到您了,可以留下一个赞告诉我 

你可能感兴趣的:(vue.js,前端,javascript)