您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Vue中$refs和$nextTick如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Vue中$refs和$nextTick如何使用”吧!
$refs是vue提供的獲取真實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>
【控制臺效果】:
【代碼演示】:
<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>
【效果展示】:
$nextTick等待dom更新之后執(zhí)行方法中的函數(shù)體
【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>
【效果演示】:
【代碼演示】:
<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>
【效果演示】:
【代碼演示】:
<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如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(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)容。