当前位置:   article > 正文

uniapp + vue3.2 用ref获取DOM元素一直为null_在uniapp中ref绑定拿不到该dom元素

在uniapp中ref绑定拿不到该dom元素

uniapp + vue3.2 开发小程序 用ref获取DOM元素一直为null
尝试了以下几种方案:

  1. onMounted()打印不行
  2. onReady()打印不行
  3. nextTrick()打印不行
  4. await 不行
  5. 不在view上绑定ref,在其他标签上绑定不行
  6. 最后结论:引入子组件,给子组件绑定ref才能获取到?

有人遇到同款问题并已解决的看到捞一下我…

<template>
	<view class="index">
		<view class="index_navbar" ref="navBar">
			huuhu
		</view>
	</view>
</template>

<script setup>
	import { ref, onMounted, reactive, nextTick } from "vue";
	const navBar = ref(null)
	onMounted(() => {
		getMenuBtnClient();
	})
	function getMenuBtnClient() {
		const btn_client = wx.getMenuButtonBoundingClientRect()
		console.log(btn_client)
		console.log(navBar.value) // 为null
		// navbar.style.top = btn_client.top
		// navbar.style.left = btn_client.right
	}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/493846
推荐阅读
相关标签
  

闽ICP备14008679号