在项目过程中,有些元素的 ref 是通过循环生成的,例如。
这里我们内部的div通过循环绑定了一个座位号的 ref ,如果我们直接去通过 $refs 去获取 consolelog(this$refsid) ,这个传入的值会被当成字符串解析,那么获取就会失败。
ref 目前使用过的三种方式:
1、在html的元素中使用rel,可在js中直接调用该元素,用this$refs(ref值) 获取到的是dom元素
2、在vue的组件上加rel,可在js中直接使用该组件包括该组件的方法,用this$refs(ref值)方法名()
3、在v-for的循环列中使用rel
避坑:
v-for中使用rel需要绑定 变量 ,即v-bind:rel='变量名'
ref 需要在dom渲染完成后才会有 ,在使用的时候确保dom已经渲染完成。比如在生命周期 mounted(){} 钩子中调用 ,或者 在 this$nextTick(()=>{}) 中调用 。
如果rel循环未绑定变量,那就$refs获取获取数组再循环得到使用即可
例子1:在html元素上使用
<div id="app">
<h1 ref="h1ele">这是h1</h1>
<hello ref="ho"></hello>
<button @click="getref">获取h1元素</button>
</div>
获取注册过 ref 的所有组件或元素
methods: {
getref() {
// 表示从 $refs对象 中, 获取 ref 属性值为: h1ele DOM元素
consolelog(this$refsh1eleinnerText);
this$refsh1elestylecolor = 'red';// 修改html样式
consolelog(this$refshomsg);// 获取组件数据
consolelog(this$refshotest);// 获取组件的方法
}
}
例子2:
<html部分
<view class="example-body">
<button class="button" type="primary" @click="togglePopup('top', 'popup')">顶部d出 popup</button>
<button class="button" type="primary" @click="togglePopup('center', 'popup')">中间d出 popup</button>
<button class="button" type="primary" @click="togglePopup('bottom', 'popup')">底部d出 popup</button>
</view>
<uni-popup ref="showpopup" :type="type" @change="change"><text class="popup-content">{{ content }}</text></uni-popup>
<uni-popup ref="showtip" :type="type" :mask-click="false" @change="change">
<view class="uni-tip">
<text class="uni-tip-title">警告</text>
<text class="uni-tip-content">这是一个通过自定义 popup,自由扩展的 警告d窗。点击遮罩不会关闭d窗。</text>
<view class="uni-tip-group-button">
<text class="uni-tip-button" @click="cancel('tip')">取消</text>
<text class="uni-tip-button" @click="cancel('tip')">确定</text>
</view>
</view>
</uni-popup>
<js部分
methods: {
togglePopup(type, open) {
switch (type) {
case 'top':
thiscontent = '顶部d出 popup'
break
case 'bottom':
thiscontent = '底部d出 popup'
break
case 'center':
thiscontent = '居中d出 popup'
break
}
thistype = type
this$nextTick(() => {
this$refs['show' + open]open()
})
},
cancel(type) {
this$refs['show' + type]close()
},
change(e) {
consolelog('是否打开:' + eshow)
}
},
一般来讲获取DOM元素,需documentquerySelector("class")获取这个dom节点,然后在获取元素的值。
但是用ref绑定之后,我们就不需要在获取dom节点了,直接在上面的元素上绑定rel,然后$refs里面调用就行。
然后在javascript里面这样调用:this$refs元素绑定rel 这样就可以减少获取dom节点的消耗了
注意:本篇没有干货
ref有以下用法用法:
1、ref 加在普通的元素上,用thisrefname 获取到的是dom元素
2、ref 加在子组件上,用thisrefname 获取到的是组件实例,可以使用组件的所有方法。
3、利用 v-for 和 ref 获取一组数组或者dom 节点
效果图:
1、ref 需要在dom渲染完成后才会有,在使用的时候确保dom已经渲染完成。比如在生命周期 mounted(){} 钩子中调用,或者在 this$nextTick(()=>{}) 中调用。
vue 问题笔记 ref获取不到指定的DOM节点问题解决
页面里被查找的元素添加一个 ref='refrence' 这里refrencce可以随便起名字,下面引用这个名字
然后要获取这个元素就用this$refsrefrence
同样,组件添加到页面里的内容也可以通过添加ref标签来获组件里内容
比如获取元素高度
this$refselementoffsetHeight
比如:改变元素的高 那么这个height必须要在这个div写样式的时候就已经有了,否则无法获取到
以上就是关于$refs通过模板字符串动态获取全部的内容,包括:$refs通过模板字符串动态获取、vue中$refs的使用记录、vue中ref获取不到dom问题解决,关于this.$nextTick的使用等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)