中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Vue中$refs和$nextTick如何使用

發布時間:2022-03-15 14:46:31 來源:億速云 閱讀:182 作者:iii 欄目:開發技術

本篇內容主要講解“Vue中$refs和$nextTick如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“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標簽</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;
    // 調用子組件中的方法
    demo.fn();
  },
  components: {
    Demo,
  },
};
</script>

<style>
</style>

【效果展示】:

Vue中$refs和$nextTick如何使用

2、$nextTick基本使用

$nextTick等待dom更新之后執行方法中的函數體

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;
    // 調用子組件中的方法
    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,馬上獲取數據</button>
  </div>
</template>

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

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

      // 解決異步更新問題
      // dom更新完成之后會順序執行this.$nextTick()中的函數體
      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如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

信阳市| 河北区| 黎川县| 莱州市| 历史| 汉寿县| 正安县| 新绛县| 久治县| 渭源县| 台江县| 阿鲁科尔沁旗| 金川县| 天台县| 龙陵县| 淮阳县| 图木舒克市| 宝丰县| 赤城县| 齐河县| 南漳县| 盐池县| 陕西省| 衢州市| 厦门市| 巴南区| 康平县| 松桃| 甘孜| 宁南县| 江陵县| 贵溪市| 边坝县| 柳江县| 上犹县| 泗水县| 庆安县| 伊吾县| 石棉县| 怀仁县| 新化县|