91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

武清区| 自贡市| 城市| 朝阳市| 读书| 托克逊县| 丘北县| 仙居县| 南岸区| 慈溪市| 嘉峪关市| 武陟县| 贵州省| 西青区| 阳高县| 兴国县| 炎陵县| 长宁县| 博爱县| 若尔盖县| 琼海市| 青州市| 襄樊市| 洪江市| 抚顺县| 长子县| 罗城| 渝北区| 无棣县| 时尚| 遵义市| 东海县| 红河县| 文成县| 峨眉山市| 新泰市| 斗六市| 苍梧县| 静海县| 嘉荫县| 西昌市|