溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue中$refs和$nextTick如何使用

發(fā)布時間:2022-03-15 14:46:31 來源:億速云 閱讀:180 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Vue中$refs和$nextTick如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Vue中$refs和$nextTick如何使用”吧!

1、$refs簡介

$refs是vue提供的獲取真實dom的方法。

$refs獲取DOM元素

【使用步驟】:

在原生DOM元素上添加ref屬性利用this.$refs獲取原生的DOM元素

【代碼演示】:

<template>
  <div>
    <h2>獲取原生的DOM元素</h2>
    <h5 id="h" ref="myH">我是h5標(biāo)簽</h5>
  </div>
</template>

<script>
export default {
  // 在掛載之后獲取原生dom
  mounted() {
    console.log(document.getElementById("h"));
    // this.$refs是vue對象中特有的屬性
    console.log(this.$refs.myH);
  },
};
</script>

<style>
</style>

【控制臺效果】:

Vue中$refs和$nextTick如何使用

$refs獲取組件對象

【代碼演示】:

<template>
  <div>
    <h2>獲取組件對象</h2>
    <Demo ref="myCom"></Demo>
  </div>
</template>

<script>
import Demo from "@/components/Demo";
export default {
  mounted() {
    console.log(this.$refs.myCom);
    // 獲取子組件對象
    let demo = this.$refs.myCom;
    // 調(diào)用子組件中的方法
    demo.fn();
  },
  components: {
    Demo,
  },
};
</script>

<style>
</style>

【效果展示】:

Vue中$refs和$nextTick如何使用

2、$nextTick基本使用

$nextTick等待dom更新之后執(zhí)行方法中的函數(shù)體

vue異步更新DOM

【vue異步更新演示】:

<template>
  <div>
    <h2>獲取組件對象</h2>
    <Demo ref="myCom"></Demo>
  </div>
</template>

<script>
import Demo from "@/components/Demo";
export default {
  mounted() {
    console.log(this.$refs.myCom);
    // 獲取子組件對象
    let demo = this.$refs.myCom;
    // 調(diào)用子組件中的方法
    demo.fn();
  },
  components: {
    Demo,
  },
};
</script>

<style>
</style>

【效果演示】:

Vue中$refs和$nextTick如何使用

利用$nextTick解決以上問題

【代碼演示】:

<template>
  <div>
    <p>vue異步更新dom</p>
    <p ref="mycount">{{ count }}</p>
    <button @click="add1">點擊+1,馬上獲取數(shù)據(jù)</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      count: 0,
    };
  },

  methods: {
    add1() {
      this.count++;
      // console.log(this.$refs.mycount.innerHTML);

      // 解決異步更新問題
      // dom更新完成之后會順序執(zhí)行this.$nextTick()中的函數(shù)體
      this.$nextTick(() => {
        console.log(this.$refs.mycount.innerHTML);
      });
    },
  },
};
</script>

<style>
</style>

【效果演示】:

Vue中$refs和$nextTick如何使用

$nextTick使用場景

【代碼演示】:

<template>
  <div>
    <p>$nextTick()使用場景</p>
    <input
      ref="search"
      v-if="isShow"
      type="text"
      placeholder="這是一個輸入框"
    />
    <button @click="search">點擊-立即搜索</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isShow: false,
    };
  },

  methods: {
    search() {
      this.isShow = true;
      this.$nextTick(() => {
        this.$refs.search.focus();
      });
    },
  },
};
</script>

<style>
</style>

【效果】:

Vue中$refs和$nextTick如何使用

到此,相信大家對“Vue中$refs和$nextTick如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI