vue.js 學習手冊 框架的選擇與導入

這篇文章是vue.js學習手冊的第一篇文章,也是我認為最難寫的一篇文章,就像vue.js提到的他是一個“漸進式”框架,在這篇文章也想要跟各位分享選擇框架的一些原則,讓大家可以“漸進式”的了解為什麼我們在網頁開發時需要選擇一個框架來幫助我們,在選擇框架之前我們要先弄清楚,框架究竟可以幫助我們在網頁開發上的哪些部分,如果這些部分跟你要開發的項目並不媒合,那奉勸你別把單純的事情搞複雜了,而且你可能會開始討厭學習框架,但若反之,你一定會愛上框架,甚至覺得他讓你事半功倍。

強大的前、後端串接功能


現代的網頁被要求除了有著摩登的前端UI之外,在網頁中的資料有常需要配合“大數據”下的資料進行呈現,說白話一點也就是網頁上面呈現的資料並不是寫死在頁面中的,而是透過後端資料庫取出來的,舉凡會員登入的名稱、購物網站中的商品資訊、新聞網站中的新聞就連你現在看到的這篇文章,也都是存放於資料庫中,網頁去對資料庫進行讀取後顯示在介面上的。

當然除了對資料庫進行讀取之外,網頁也會對資料庫進行儲存的動作,舉凡會員資料修改、商品訂單建立、網站偏好設定…等等,而框架在這方面有許多很好的方法,讓我們可以更周全快速的處理這方面的動作,節省許多開發的時間與減少Bug上的產生。

模組化開發架構


在一個大型網站中,可能有許多網頁中會出現相同風格的元素,例如:下拉式選單、按鈕、分頁導覽,是每一個頁面都會重複應用到的一些元件,傳統的網頁開發上就是在每一頁嵌入對應的HTML Code,這樣的做法非但不易維護,也會增加許多冗長且重複的程式碼。

模組化開發可以如上圖所示,將頁面中需重用的元素拉出來設計成一個Component,在不同頁面可以透過引入的方式置入該Component,而Component的維護可以統一在該Component中進行,可以減少大量維護上的時間。

透過 Virtual DOM 來提升頁面效能


現代的網頁前端框架為了提升頁面操作的效能都提供了Virtual DOM,在Vue.js 2.0中也引入Virtual DOM,比Vue.js 1.0的初始渲染速度提升了2~4倍,並大大降低了內存消耗,至於為何Virtual DOM能提昇網頁的效能,大家就必須了解我們透過Javascirpt更新實體DOM時會產生的效能問題開始了解。

實體DOM更新的效能測試

這邊製作一個簡單的範例對實體DOM和虛擬DOM的效能進行說明:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title></title>
</head>
<body>
  <div class="wrapper">
    <div class="container">
      <div class="itemList">
        <ul id="itemList__ul">
          <li id="liID">Item 1</li>
        </ul>
      </div>
    </div>
    <button onClick="insertItems()">Go</button>
  </div>
</body>
</html>
<script>
  var itemData = "";
  function insertItems() {
    for (var i = 1; i <= 100000; i++) {
      itemData = "Item " + i
      document.getElementById("liID").innerHTML = itemData;
    }
  }
</script>

在HTML DOM的操作上,只要頁面元素有變更,就可能會觸發Reflow或Repaint這樣的動作,瀏覽器也會耗費相當多的資源在進行這些動作,以上述的例子來看,當我們按下頁面上的按鈕之後,就會透過迴圈去改變li的內容,這樣將會觸發多次的瀏覽器動作。

下圖是我們在Chrome中獲得的效能資訊:

若是我們將上述程式中的第26行移除,則效能會改變如下圖所示:

這樣可以很明確的了解效能殺手就是程式中的第26行,而這行程式的目的是去更新瀏覽器中的內容,若沒有這行沒辦法讓使用者看到最終的結果,因為我們必須透過這樣的方式更新DOM內容。

虛擬DOM的效能測試

同樣頁面的效果,我們在Vue裡面的作法如下:

<!DOCTYPE html>
<html lang="zh">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title></title>
  <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
  <div id="app">
    <ul>
      <li v-for="item in items">{{ item.message }}</li>
    </ul>
    <button @click="insertItems">Go</button>
  </div>
</body>
</html>
<script>
    var vueData = {
        items: [
      { message: 'Item 1' }
    ]
    }
    var app = new Vue({
        el: '#app',
        data: vueData,
    methods: {
      insertItems: function(){
        for(var i = 1; i <= 100000; i ++){
          vueData.items[0].message = "Item " + i;
        }
      }
    }
    })
</script>

同樣的結果在Vue會在Javascript和瀏覽器中加入一層Virturl DOM,待Virturl DOM更新完畢之後,在寫入瀏覽器中。

透過這樣的方法,使用這得到的一樣的效果,但大大提高了使用者端瀏覽器的效能,可以從下圖觀察的出來!

在Virtual DOM的架構中,會把程式的動作動作集中在Virtual DOM中運算,當確定整個頁面結構之後,再一次性地將結果繪製到頁面中,可以想像成原本的DOM操作就是在每一次在CPU運算之後,直接把結果寫到硬碟當中,而Virtual DOM就是在CPU與硬碟間加入了記憶體層,CPU運算後先將結果儲存在記憶體中,最後再將記憶體的資料一次性的寫入硬碟

PS:記憶體的運算速度超過硬碟很多倍。

結論


綜合上述所說,網頁專案中採用前端框架,有著減少開發時間、易於維護、增加頁面效能…等優點,但若你的專案並不會大量與後端串接、製作上元件重複使用的機會不高、在頁面中也不太會對DOM進行Reflow與Repaint,可能是一個活動網頁、公司形象網頁…等,也許就沒有必要去選用一個前端框架,簡言之工具用在正確的地方,才能顯現出它的價值,當然目前符合使用框架的專案也一定非常多,也就是這樣的原因,才會造成前端框架的流行。

You may also like...

81,653 Responses

  1. JosephCyday表示:

    taya777 app taya777 register login Slot machines feature various exciting themes.

  2. Williamgox表示:

    The casino scene is constantly evolving. https://phtaya.tech/# Players often share tips and strategies.

  3. JacobLoody表示:

    кухни под заказ екатеринбург — Эксклюзивные решения для кухонь под заказ в Екатеринбурге от pravoslavieug.

  4. Drugs prescribing information. Long-Term Effects.
    cost of cheap norvasc without prescription
    Everything what you want to know about medicines. Read information now.

  5. CharlesDup表示:

    Ленинградская область выделяется разнообразной геологической структурой, что определяет задачу сверления скважин на воду неповторимым в каждом регионе. Область включает различие основ и подземных пластов, которые нуждаются в специализированный метод при поиске зоны и метки пробивки. Подземная вода может протекать как на неглубокой высоте, так и погружаться на нескольких десятков метров, что определяет сложность процесса.

    Одним из основных факторов, влияющих на тип источника https://burenie-piter-98.ru/ , служит грунтовые слои и уровень глубинного источника. В Ленинградской области чаще всего строят артезианские скважины, которые дают доступ к чистой и стабильной воде из глубинных пластов. Такие скважины ценятся за длительным сроком использования и отличным качеством ресурса, однако их постройка нуждается существенных средств и уникального аппаратуры.

    Способы бурения в регионе требует использование инновационных установок и инструментов, которые могут управляться с плотными породами и избегать возможные обвалы опор скважины. Следует отметить, что всегда нужно обращать внимание на санитарные требования и правила, так как вблизи отдельных населённых поселений расположены охраняемые водные зоны и защищенные зоны, что предполагает особый внимательный подход к буровым мероприятиям.

    Водные запасы из глубоких источников в Ленинградской области замечательна отсутствием загрязнений, так как она укрыта от внешних воздействий и содержит гармоничный состав микроэлементов. Это делает такие источники популярными для частных домов и заводов, которые выбирают долговечность и безопасную чистоту водообеспечения.

  6. Davidzem表示:

    http://taya777.icu/# Players must be at least 21 years old.
    Many casinos host charity events and fundraisers.

  7. Davidzem表示:

    http://phtaya.tech/# Loyalty programs reward regular customers generously.
    Gaming regulations are overseen by PAGCOR.

  8. Wheezing表示:

    Asthma symptom severity counseling services Weather changes and asthma Asthma symptom severity control methods
    Asthma symptom severity relief remedies Asthma symptom severity reduction tactics Asthma symptom severity management techniques
    Asthma symptom severity monitoring devices
    Asthma symptom severity education initiatives Bronchodilators Asthma symptom severity awareness programs
    Asthma symptom severity control measures Asthma symptom severity prevention interventions Asthma symptom assessment

  9. The rise of online casinos has revolutionized the gambling industry, making it more accessible, convenient, and thrilling than ever before. Now, gamblers don’t have to travel to experience the thrill of betting, as the full casino experience is accessible from desktops, tablets, and smartphones.

    Why Online Casinos Are So Popular
    There are many reasons why online casinos have gained massive traction. One of the biggest advantages is accessibility. Unlike traditional brick-and-mortar casinos, virtual casinos allow you to play whenever it suits you best.

    One of the strongest attractions is the enormous range of gaming options available. Physical casinos may offer a few hundred games at best, but digital platforms feature thousands. From classic fruit machines to cutting-edge video slots with immersive themes, the choices are practically limitless.

    Stay updated with the latest casino news, exclusive bonuses, and expert tips—follow us lucky jet 1win

    Bonuses, Rewards, and Promotions
    The abundance of promotions is one of the key benefits of playing at online casinos. New players are often welcomed with attractive sign-up bonuses, deposit matches, and free spins. Regular players can take advantage of loyalty programs, cashback deals, and exclusive VIP rewards.

    Games of Chance vs. Games of Strategy
    While many casino games are based purely on luck, some require skill and strategy. Poker, for instance, is a game of skill where experienced players can outplay beginners by reading opponents and making calculated decisions. If you prefer a fast-paced, unpredictable experience, slots and roulette provide thrilling, luck-based gameplay.

    How to Gamble Responsibly Online
    While online casinos offer fun and potential winnings, responsible gambling is crucial. Smart bankroll management and self-control help players maintain a healthy approach to gambling. Licensed casinos provide responsible gambling measures, such as cooling-off periods and withdrawal restrictions, to help players stay in control.

    Let’s Talk About Online Casinos
    Have you played at an online casino before? What was your experience like? Tell us about your biggest wins or best casino moments!

  10. Williamgox表示:

    Many casinos offer luxurious amenities and services. https://phtaya.tech/# Online gaming is also growing in popularity.

  11. Lannyhat表示:

    Live music events often accompany gaming nights.: taya777 app – taya777.icu

  12. Davidzem表示:

    http://winchile.pro/# La variedad de juegos es impresionante.
    Entertainment shows are common in casinos.

  13. Patrickspogs表示:

    Some casinos have luxurious spa facilities.: taya777 – taya777.icu

  14. JacobLoody表示:

    http://fortekb.ru/ – Закажите кухню на официальном сайте.

  15. Lannyhat表示:

    Many casinos offer luxurious amenities and services.: phmacao com – phmacao com login

  16. Williamgox表示:

    The casino industry supports local economies significantly. http://phmacao.life/# Some casinos feature themed gaming areas.

  17. JeffryLen表示:

    The full special bip39 Word List consists of 2048 words used to protect cryptocurrency wallets. Allows you to create backups and restore access to digital assets. Check out the full list.

  18. Patrickspogs表示:

    Manila is home to many large casinos.: taya365 – taya365

  19. JeffryLen表示:

    The full special bip39 Word List consists of 2048 words used to protect cryptocurrency wallets. Allows you to create backups and restore access to digital assets. Check out the full list.

  20. Patrickspogs表示:

    La Г©tica del juego es esencial.: winchile casino – winchile casino

  21. Davidzem表示:

    http://jugabet.xyz/# Muchos casinos tienen salas de bingo.
    Many casinos offer luxurious amenities and services.

  22. Lannyhat表示:

    Live dealer games enhance the casino experience.: phtaya – phtaya casino

  23. Lannyhat表示:

    Live dealer games enhance the casino experience.: taya777 login – taya777 login

  24. Stevenmayow表示:

    zDTvHFu2zgx34ZNBn6H1zmist
    http://37623464.com/

  25. JosephCyday表示:

    phtaya casino phtaya casino Manila is home to many large casinos.

  26. Davidzem表示:

    https://taya777.icu/# Entertainment shows are common in casinos.
    Slot machines attract players with big jackpots.

  27. JosephCyday表示:

    winchile casino winchile Las redes sociales promocionan eventos de casinos.

  28. Lannyhat表示:

    The Philippines has several world-class integrated resorts.: taya777 register login – taya777 register login

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。