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

溫馨提示×

溫馨提示×

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

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

vue的$refs是什么及怎么使用

發布時間:2022-12-15 09:33:58 來源:億速云 閱讀:171 作者:iii 欄目:web開發

這篇文章主要講解了“vue的$refs是什么及怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“vue的$refs是什么及怎么使用”吧!

在vue中,$refs是一個對象,持有注冊過ref attribute的所有DOM元素和組件實例。ref被用來給元素或子組件注冊引用信息,引用信息將會注冊在父組件的“$refs”對象上;如果在普通的DOM元素上使用,引用指向的就是DOM元素;如果用在子組件上,引用就指向組件實例。

Vue中的$refs

$refs是一個對象,持有注冊過ref attribute的所有DOM元素和組件實例。

描述

ref被用來給元素或子組件注冊引用信息,引用信息將會注冊在父組件的$refs對象上,

  • 如果在普通的DOM元素上使用,引用指向的就是DOM元素;

  • 如果用在子組件上,引用就指向組件實例;

另外當v-for用于元素或組件的時候,引用信息將是包含DOM節點或組件實例的數組。

<!DOCTYPE html>
<html>
<head>
    <title>Vue</title>
</head>
<body>
    <div id="app">
        <div ref="node">Node</div>
        <layout-div ref="layout"></layout-div>
        <div v-for="i in 3" :key="i" ref="nodearr">{{i}}</div>
    </div>
</body>
<script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script>
<script type="text/javascript">
    Vue.component("layout-div", {
      data: function(){
          return {
            count: 0
          }
      },
      template: `<div>
                    <div>{{count}}</div>
                </div>`
    })
 
    var vm = new Vue({
        el: '#app',
        mounted: function(){
            console.log(this.$refs.node); // <div>Node</div> // DOM元素
            console.log(this.$refs.layout); // VueComponent {_uid: 1, ...} // 組件實例
            console.log(this.$refs.nodearr); // (3) [div, div, div] // DOM元素數組
        }
    })
</script>
</html>

因為ref本身是作為渲染結果被創建的,在初始渲染的時候是不能訪問的,因為其還不存在,而且$refs也不是響應式的,因此不應該試圖用它在模板中做數據綁定,在初始化訪問ref時,應該在其生命周期的mounted方法中調用,在數據更新之后,應該在$nextTick方法中傳遞回調操作來獲取元素或實例,此外一般不推薦直接操作DOM元素,盡量使用數據綁定讓MVVM的ViewModel去操作DOM。

<!DOCTYPE html>
<html>
<head>
    <title>Vue</title>
</head>
<body>
    <div id="app"></div>
</body>
<script src="https://cdn.bootcss.com/vue/2.4.2/vue.js"></script>
<script type="text/javascript">
 
    var vm = new Vue({
        el: '#app',
        data: function(){
            return {
                msg: 0
            }
        },
        template:  `<div>
                       <div ref="node">{{msg}}</div>
                       <button @click="updateMsg">button</button>
                    </div>`,
        beforeMount: function(){
            console.log(this.$refs.node); // undefined
        },
        mounted: function(){
            console.log(this.$refs.node); // <div>0</div>
        },
        methods: {
            updateMsg: function(){
                this.msg = 1;
                console.log(this.$refs.node.innerHTML); // 0
                this.$nextTick(() => {
                    console.log(this.$refs.node.innerHTML); // 1
                })
            }
        }
    })
</script>
</html>

VUE中$refs的基本用法

ref 有三種用法:

  1、ref 加在普通的元素上,用this.$refs.(ref值) 獲取到的是dom元素

  2、ref 加在子組件上,用this.$refs.(ref值) 獲取到的是組件實例,可以使用組件的所有方法。在使用方法的時候直接this.$refs.(ref值).方法() 就可以使用了。

  3、如何利用 v-for 和 ref 獲取一組數組或者dom 節點

應注意的坑:

1、如果通過v-for 遍歷想加不同的ref時記得加 :號,即 :ref =某變量 ;
這點和其他屬性一樣,如果是固定值就不需要加 :號,如果是變量記得加 :號。(加冒號的,說明后面的是一個變量或者表達式;沒加冒號的后面就是對應的字符串常量(String))

2、通過 :ref =某變量 添加ref(即加了:號) ,如果想獲取該ref時需要加 [0],如this.$refs[refsArrayItem] [0];如果不是:ref =某變量的方式而是 ref =某字符串時則不需要加,如this.$refs[refsArrayItem]。

vue的$refs是什么及怎么使用

1、ref 需要在dom渲染完成后才會有,在使用的時候確保dom已經渲染完成。比如在生命周期 mounted(){} 鉤子中調用,或者在 this.$nextTick(()=>{}) 中調用

2、如果ref 是循環出來的,有多個重名,那么ref的值會是一個數組 ,此時要拿到單個的ref 只需要循環就可以了。

例子1:

添加ref屬性

<div id="app">
    <h2 ref="h2Ele">這是H1</h2>
    <hello ref="ho"></hello>
 
    <button @click="getref">獲取H1元素</button>
</div>

獲取注冊過 ref 的所有組件或元素

methods: {
        getref() {
          // 表示從 $refs對象 中, 獲取 ref 屬性值為: h2ele DOM元素或組件
           console.log(this.$refs.h2Ele.innerText);
           this.$refs.h2ele.style.color = 'red';// 修改html樣式
 
          console.log(this.$refs.ho.msg);// 獲取組件數據
          console.log(this.$refs.ho.test);// 獲取組件的方法
        }
      }

例子2:

Vue代碼:

 <!-- 列表部分 -->
                <el-table @sort-change="sortChange" ref="multipleSelection" border :data="valueDryGoodTableData" style="width: 100%">
                    <el-table-column align="left" prop="title" label="標題" min-width="80%" sortable="custom">
                        <template slot-scope="scope">
                            <a target="_blank" :class="scope.row.titleClicked?'titleClicked':''" class="hoverHand bluetext" v-html="scope.row.title" @click="titleClick(scope.row.articleUrl,scope.$index)">
                            </a>
                        </template>
                    </el-table-column>
                    <el-table-column align="left" prop="releaseTime" label="發布日期" min-width="11%" sortable="custom"></el-table-column>
                    <el-table-column align="center" label="操作" min-width="9%">
                        <template slot-scope="scope">
                            <span class="operatoryTools">
                                <i title="取消收藏" v-if="scope.row.isFavour" @click="favoriteOperating(scope.row.id, scope.$index)" class="hoverHand iconStyle el-icon-star-on"></i>
                                <i title="收藏" v-else @click="favoriteOperating(scope.row.id, scope.$index)" class="hoverHand iconStyle el-icon-star-off"></i>
                                <i title="分享" @click.stop="showShareOperation(scope.$index)" class="shareTarg iconfont">&#xe678;</i>
                                <div class="share" v-if="scope.row.showShare">
                                    <img class="hoverHand shareItem" title="分享到微博" @click="shareItem('sina',$event);" src="@/images/WEIBO.png">
                                    <img class="hoverHand shareItem" title="分享到微信" @click.stop="shareItem('wx',$event);" src="@/images/WEIXIN.png">
                                    <img class="hoverHand shareItem" title="分享到QQ" @click="shareItem('qq',$event);" src="@/images/QQ.png">
                                </div>
                                <div v-show="scope.row.erweimaShare" class="erweima_share"></div>
                                <div v-show="scope.row.erweimaShare1" class="erweima_share1"></div>
                            </span>
                        </template>
                    </el-table-column>
                </el-table>

JS代碼:

//點擊清空條件,調用該方法
emptyAndSearch(){//清空條件方法
			//清空樹選中狀態
			this.clearTreeNodeCheck(['tree']);
			//清除排序
			this.$refs.multipleSelection.clearSort();
			//設置分頁參數
			this.queryParam = {
				startRow : 1,
                pageSize : 20,
                condition:{
                }
			}
			//分頁查詢調用
			this.confirmSearch('statistics');
			//設置清空條件為false
			this.$store.commit('valueDryGoodDatas/SET_CLEAR_ALL',false);
		}

例子3:

Vue代碼:

 <el-form-item
                          ref="goodPicInfoFormpicUrl"
                          :label="$t('許可證證照')"
                          class="is-required"
                          prop="picUrl">
                          <el-upload
                            :show-file-list="false"
                            :http-request="uploadImg"
                            :data="certImgform"
                            action=""
                            class="avatar-uploader">
                            <img
                              v-if="queryFrom.picUrl"
                              :src="queryFrom.picUrl"
                              class="avatar">
                            <i
                              v-else
                              class="el-icon-plus avatar-uploader-icon"/>
                          </el-upload>
                          <el-button
                            type="primary"
                            plain
                            size="mini"
                            @click="viewPcPic(queryFrom.picUrl)">{{ $t('查看') }}</el-button>
                        </el-form-item>

JS代碼:

      //獲取元素清除驗證
              this.$refs.goodPicInfoFormpicUrl.clearValidate()

一般來講,想獲取INPUT框,首先在獲取DOM元素,需document.querySelector(".input1")獲取這個dom節點,然后在獲取input1的值。

但是用ref綁定之后,我們就不需要在獲取dom節點了,直接在上面的input上綁定input1,然后$refs里面調用就行。

然后在javascript里面這樣調用:this.$refs.input1  這樣就可以減少獲取dom節點的消耗了。

感謝各位的閱讀,以上就是“vue的$refs是什么及怎么使用”的內容了,經過本文的學習后,相信大家對vue的$refs是什么及怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

中阳县| 绥化市| 泗阳县| 建瓯市| 理塘县| 灌南县| 松阳县| 青田县| 夏邑县| 兴化市| 深州市| 集贤县| 丹东市| 宁安市| 刚察县| 咸宁市| 新民市| 新津县| 旬邑县| 奈曼旗| 阿鲁科尔沁旗| 永靖县| 黑河市| 丰城市| 楚雄市| 易门县| 岳普湖县| 哈巴河县| 米泉市| 璧山县| 兴国县| 安远县| 屯留县| 琼结县| 新建县| 成安县| 南部县| 常州市| 长武县| 巴林右旗| 察雅县|