vue 一些能夠優化的地方

第一招:化繁爲簡的Watchershtml

 

場景還原:vue

 

created(){react

    this.fetchPostList()webpack

},程序員

watch{web

    searchInputValue(){正則表達式

        this.fetchPostList()vue-router

    }api

}dom

 

組件建立的時候咱們獲取一次列表,同時監聽input框,每當發生變化的時候從新獲取一次篩選後的列表這個場景很常見,有沒有辦法優化一下呢?

 

招式解析:

 

首先,在watchers中,能夠直接使用函數的字面量名稱;其次,聲明immediate:true表示建立組件時立馬執行一次。

 

watch{

    searchInputValue:{

        handler'fetchPostList',

        immediatetrue

    }

}

 

第二招:一勞永逸的組件註冊

 

場景還原:

 

created(){

    this.fetchPostList()

},

watch{

    searchInputValue(){

        this.fetchPostList()

    }

}

 

<BaseInput

  v-model="searchText"

  @keydown.enter="search"

/>

<BaseButton @click="search">

  <BaseIcon name="search"/>

</BaseButton>

 

咱們寫了一堆基礎UI組件,而後每次咱們須要使用這些組件的時候,都得先import,而後聲明components,很繁瑣!秉持能偷懶就偷懶的原則,咱們要想辦法優化!

 

招式解析:

咱們須要藉助一下神器webpack,使用 require.context() 方法來建立本身的(模塊)上下文,從而實現自動動態require組件。這個方法須要3個參數:要搜索的文件夾目錄,是否還應該搜索它的子目錄,以及一個匹配文件的正則表達式。

 

咱們在components文件夾添加一個叫global.js的文件,在這個文件裏藉助webpack動態將須要的基礎組件通通打包進來。

 

import Vue from 'vue'

 

function capitalizeFirstLetter(string) {

  return string.charAt(0).toUpperCase() + string.slice(1)

}

 

const requireComponent = require.context(

  '.', false, /\.vue$/

   //找到components文件夾下以.vue命名的文件

)

 

requireComponent.keys().forEach(fileName => {

  const componentConfig = requireComponent(fileName)

 

  const componentName = capitalizeFirstLetter(

    fileName.replace(/^\.\//, '').replace(/\.\w+$/, '')

    //由於獲得的filename格式是: './baseButton.vue', 因此這裏咱們去掉頭和尾,只保留真正的文件名

  )

 

  Vue.component(componentName, componentConfig.default || componentConfig)

})

 

最後咱們在main.js中import 'components/global.js',而後咱們就能夠隨時隨地使用這些基礎組件,無需手動引入了。

 

第三招:釜底抽薪的router key

 

場景還原:

 

下面這個場景真的是傷透了不少程序員的心…先默認你們用的是Vue-router來實現路由的控制。

 

假設咱們在寫一個博客網站,需求是從/post-page/a,跳轉到/post-page/b。而後咱們驚人的發現,頁面跳轉後數據居然沒更新?!緣由是vue-router」智能地」發現這是同一個組件,而後它就決定要複用這個組件,因此你在created函數裏寫的方法壓根就沒執行。一般的解決方案是監聽$route的變化來初始化數據,以下:

 

data() {

  return {

    loadingfalse,

    errornull,

    postnull

  }

},

watch{

  '$route'{

    handler'resetData',

    immediatetrue

  }

},

methods{

  resetData() {

    this.loading = false

    this.error = null

    this.post = null

    this.getPost(this.$route.params.id)

  },

  getPost(id){

 

  }

}

 

bug是解決了,可每次這麼寫也太不優雅了吧?秉持着能偷懶則偷懶的原則,咱們但願代碼這樣寫:

 

data() {

  return {

    loadingfalse,

    errornull,

    postnull

  }

},

created () {

  this.getPost(this.$route.params.id)

},

methods () {

  getPost(postId) {

    // ...

  }

}

 

招式解析:

 

那要怎麼樣才能實現這樣的效果呢,答案是給router-view添加一個unique的key,這樣即便是公用組件,只要url變化了,就必定會從新建立這個組件。(雖然損失了一丟丟性能,但避免了無限的bug)。同時,注意我將key直接設置爲路由的完整路徑,一箭雙鵰。

 

<router-view :key="$route.fullpath"></router-view>

 

第四招: 無所不能的render函數

 

場景還原:

 

vue要求每個組件都只能有一個根元素,當你有多個根元素時,vue就會給你報錯

 

<template>

  <li

    v-for="route in routes"

    :key="route.name"

  >

    <router-link :to="route">

      {{ route.title }}

    </router-link>

  </li>

</template>

 

 

ERROR - Component template should contain exactly one root element.

    If you are using v-if on multiple elements, use v-else-if

    to chain them instead.

 

招式解析:

 

那有沒有辦法化解呢,答案是有的,只不過這時候咱們須要使用render()函數來建立HTML,而不是template。其實用js來生成html的好處就是極度的靈活功能強大,並且你不須要去學習使用vue的那些功能有限的指令API,好比v-for, v-if。(reactjs就徹底丟棄了template)

 

functionaltrue,

render(h, { props }) {

  return props.routes.map(route =>

    <li key={route.name}>

      <router-link to={route}>

        {route.title}

      </router-link>

    </li>

  )

}

 

第五招:無招勝有招的高階組件

 

劃重點:這一招威力無窮,請務必掌握

 

當咱們寫組件的時候,一般咱們都須要從父組件傳遞一系列的props到子組件,同時父組件監聽子組件emit過來的一系列事件。舉例子:

 

//父組件

<BaseInput

    :value="value"

    label="密碼"

    placeholder="請填寫密碼"

    @input="handleInput"

    @focus="handleFocus>

</BaseInput>

 

//子組件

<template>

  <label>

    {{ label }}

    <input

      :value="value"

      :placeholder="placeholder"

      @focus=$emit('focus', $event)"

      @input="$emit('input', $event.target.value)"

    >

  </label>

</template>

 

有下面幾個優化點:

 

1.每個從父組件傳到子組件的props,咱們都得在子組件的Props中顯式的聲明才能使用。這樣一來,咱們的子組件每次都須要申明一大堆props, 而相似placeholer這種dom原生的property咱們其實徹底能夠直接從父傳到子,無需聲明。方法以下:

 

<input

   :value="value"

   v-bind="$attrs"

   @input="$emit('input', $event.target.value)"

>

 

$attrs包含了父做用域中不做爲 prop 被識別 (且獲取) 的特性綁定 (class 和 style 除外)。當一個組件沒有聲明任何 prop 時,這裏會包含全部父做用域的綁定,而且能夠經過 v-bind=」$attrs」 傳入內部組件——在建立更高層次的組件時很是有用。

 

2.注意到子組件的@focus=$emit('focus', $event)"其實什麼都沒作,只是把event傳回給父組件而已,那其實和上面相似,我徹底不必顯式地申明:

 

<input

    :value="value"

    v-bind="$attrs"

    v-on="listeners"

>

 

computed{

  listeners() {

    return {

      ...this.$listeners,

      inputevent =>

        this.$emit('input', event.target.value)

    }

  }

}

 

$listeners包含了父做用域中的 (不含 .native 修飾器的) v-on 事件監聽器。它能夠經過 v-on=」$listeners」 傳入內部組件——在建立更高層次的組件時很是有用。

 

3.須要注意的是,因爲咱們input並非BaseInput這個組件的根節點,而默認狀況下父做用域的不被認做 props 的特性綁定將會「回退」且做爲普通的 HTML 特性應用在子組件的根元素上。因此咱們須要設置inheritAttrs:false,這些默認行爲將會被去掉, 以上兩點的優化才能成功。

相關文章
相關標籤/搜索