html文件的ref,Vue.js中ref ($refs)用法举例总结及应注意的坑

一、根据官方文档总结的用法:

看Vue.js文档中的ref部分,自己总结了下ref的使用方法以便后面查阅。

1、ref使用在外面的组件上

HTML 部分

ref在外面的组件上

js部分

var refoutsidecomponentTem={

template:"

我是子组件
"

};

var refoutsidecomponent=new Vue({

el:"#ref-outside-component",

components:{

"component-father":refoutsidecomponentTem

},

methods:{

consoleRef:function () {

console.log(this); // #ref-outside-component vue实例

console.log(this.$refs.outsideComponentRef); // div.childComp vue实例

}

}

});

2、ref使用在外面的元素上

HTML部分

ref在外面的元素上

JS部分

var refoutsidedomTem={

template:"

我是子组件
"

};

var refoutsidedom=new Vue({

el:"#ref-outside-dom",

components:{

"component-father":refoutsidedomTem

},

methods:{

consoleRef:function () {

console.log(this); // #ref-outside-dom vue实例

console.log(this.$refs.outsideDomRef); //

ref在外面的元素上

}

}

});

3、ref使用在里面的元素上---局部注册组件

HTML部分

ref在里面的元素上

JS部分

var refinsidedomTem={

template:"

" +

"

我是子组件
" +

"

",

methods:{

consoleRef:function () {

console.log(this); // div.childComp vue实例

console.log(this.$refs.insideDomRef); //

我是子组件

}

}

};

var refinsidedom=new Vue({

el:"#ref-inside-dom",

components:{

"component-father":refinsidedomTem

}

});

4、ref使用在里面的元素上---全局注册组件

HTML部分

JS部分

Vue.component("ref-inside-dom-quanjv",{

template:"

" +

"" +

"

ref在里面的元素上--全局注册

" +

"

",

methods:{

showinsideDomRef:function () {

console.log(this); //这里的this其实还是div.insideFather

console.log(this.$refs.insideDomRefAll); //

}

}

});

var refinsidedomall=new Vue({

el:"#ref-inside-dom-all"

});

二、应注意的坑

1、如果通过v-for 遍历想加不同的ref时记得加 :号,即 :ref =某变量 ;

这点和其他属性一样,如果是固定值就不需要加 :号,如果是变量记得加 :号

3bd8a2b07d57

image.png

2、通过 :ref =某变量 添加ref(即加了:号) ,如果想获取该ref时需要加 [0],如this.$refs[refsArrayItem] [0];如果不是:ref =某变量的方式而是 ref =某字符串时则不需要加,如this.$refs[refsArrayItem]

3bd8a2b07d57

加和不加[0]的区别--未展开

3bd8a2b07d57

加和不加[0]的区别--展开了

3、想在element ui 对话框打开后取dom时,应该使用$nextTick,而不是直接使用this.$refs. imgLocal2:

console.log('this.$refs.imgLocal2外面', this.$refs.imgLocal2);

setTimeout(() => {

console.log('this.$refs.imgLocal2 setTimeout', this.$refs.imgLocal2);

}, 500); // 不推荐

this.$nextTick(() => {

console.log('this.$refs.imgLocal2 $nextTick', this.$refs.imgLocal2);

});

3bd8a2b07d57

结果

**本文版权归本人即简书笔名:该账户已被查封 所有,如需转载请注明出处。谢谢! *

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值