首頁 > 軟體

VUE 元件的計算屬性詳解

2022-06-24 14:02:30

前言

  • 今天也是元氣滿滿的一天,今天整理一下VUE元件的計算屬性!~~
  • 開始我們的學習之旅

計算屬性

  • 先參照一張圖 來看一下計算屬性之間的關聯:

注意: methods和computed裡的東西不能重名

  • method:定義方法,呼叫方法使用currentTime(),需要帶括號
  • computed:定義計算屬性,呼叫屬性使用currenTime2,不需要帶括號:this.message是為了能夠讓currentTime2觀察到資料變化
  • 如何在方法中的值發生了變化,則快取就會重新整理!可以在控制檯使用vm.message="HelloShit!"
 <div id='app'>
        <audio :src="currentSrc" controls autoplay @ended='handleEnded'></audio>
        <ul>
            <li :class='{active:index===currentIndex}' v-for='(item,index) in musicData' :key='item.id'
                @click='handleClick(item.songSrc,index)'>
                <h2>{{item.id}}-歌名:{{item.name}}</h2>
                <p>{{item.author}}</p>
            </li>
        </ul>
        <button @click='handleNext'>下一首</button>
    </div>

    <script src="./vue.js"></script>
    <script>
        const musicData = [{
                id: 1,
                name: '楊宗緯 - 空白格',
                author: '楊宗緯',
                songSrc: '楊宗緯 - 空白格 (Live).mp3'
            },
            {
                id: 2,
                name: '楊宗緯 - 其實都沒有',
                author: '楊宗緯',
                songSrc: '楊宗緯 - 其實都沒有.flac'
            },
            {
                id: 3,
                name: '楊宗緯 - 我想要',
                author: '楊宗緯',
                songSrc: '楊宗緯 - 我想要 (Live).flac'
            }
        ];

        new Vue({
            el: '#app',
            data: {
                musicData,
                currentSrc: '楊宗緯 - 空白格 (Live).mp3',
                currentIndex: 0
            },
            methods: {
                handleClick(src, index) {
                    this.currentSrc = src;
                    this.currentIndex = index;
                },
                handleEnded() {
                    // // 下一首的播放
                    // this.currentIndex++;
                    // this.currentSrc = this.musicData[this.currentIndex].songSrc;
                    this.handleNext();
                },
                handleNext() {
                    this.currentIndex++;
                    if (this.currentIndex === this.musicData.length) {
                        this.currentIndex = 0;
                    }
                    this.currentSrc = this.musicData[this.currentIndex].songSrc
                }
            }
        })
    </script>
  • 在methods裡定義了一個方法實現了和計算機屬性相同的效果,甚至該方法還可以接受引數,使用起來更靈活,既然使用methods就可以實現,那為什麼還需要計算機屬性呢?原因就是計算機屬性是基於它的依賴快取的。一個計算機屬性所依賴的資料發生變化時,它才會重新賦值,所以text只要不改變,計算機屬性也就不會更新
  • 這裡的Date.now()不是響應式依賴,所以計算機屬性now不會更新。但是methods則不同,只要重新渲染,它就會被呼叫,因此函數也會被執行。

總結

使用計算機屬性還是methods取決於你是否需要快取,當遍歷大陣列和做大量計算時,應當使用計算機屬性,除非你不希望得到快取。

到此這篇關於VUE 元件的計算屬性詳解的文章就介紹到這了,更多相關VUE 元件內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com