中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何寫出優雅的vue.js

發布時間:2021-08-02 14:07:59 來源:億速云 閱讀:168 作者:小新 欄目:web開發

這篇文章主要為大家展示了“如何寫出優雅的vue.js”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何寫出優雅的vue.js”這篇文章吧。

如何寫出優雅的vue.js

1. watch 與 computed 的巧妙結合

如上圖,一個簡單的列表頁面。

你可能會這么做:

 created(){
  this.fetchData()
 },
 
 watch: {
  keyword(){
   this.fetchData()
  }
 }

如果參數比較多,比如上圖

  • 關鍵字篩選,

  • 區域篩選,

  • 設備ID篩選,

  • 分頁數,

  • 每頁幾條數據,

可能會是這樣:

data(){
 return {
  keyword:'',
  region:'',
  deviceId:'',
  page:1
 }
},
methods:{
 fetchData(paramrs={
  keyword:this.keyword,
  region:this.region,
  deviceId:this.deviceId,
  page:this.page,
 }){
  this.$http.get("/list",paramrs).then("do some thing")
 }
},
created(){
 this.fetchData()
},
watch: {
 keyword(data){
  this.keyword=data
  this.fetchData()
 },
 region(data){
  this.region=data
  this.fetchData()
 },
 deviceId(data){
  this.deviceId=data
  this.fetchData()
 },
 page(data){
  this.page=data
  this.fetchData()
 },
 requestParams(params){
  this.fetchData(params)
 }
}

不過這么寫,明顯有問題,主要是watch了很多參數,而且函數的處理都差不多,可以修改一下,通過methods處理

data(){
 return {
  keyword:'',
  region:'',
  deviceId:'',
  page:1
 }
},
methods:{
 paramsChange(paramsName,paramsValue){
  this[paramsName]=paramsValue
  this.fetchData()
 },
 fetchData(paramrs={
  keyword:this.keyword,
  region:this.region,
  deviceId:this.deviceId,
  page:this.page,
 }){
  this.$http.get("/list",paramrs).then("do some thing")
 }
},
created(){
 this.fetchData()
}

當然這么寫,需要在模板里面每個參數change的地方綁定事件,并傳遞參數值,比如分頁change時:

<el-pagination
 layout="total, prev, pager, next, jumper"
 :total="total"
 prev-text="上一頁"
 next-text="下一頁"
 @current-change="paramsChange('page',$event)"
 >
</el-pagination>

相比上面的各種watch,代碼明顯少了很多,但是還有一個問題,那就是要在template的很多地方綁定change事件。

最后,當然是使用我們重點推薦的computed + watch

data(){
 return {
  keyword:'',
  region:'',
  deviceId:'',
  page:1
 }
},
computed:{
 requestParams() {
  return {
   page: this.page,
   region: this.region,
   id: this.deviceId,
   keyword: this.keyword
  }
 }
},
methods:{
 fetchData(paramrs={
  keyword:this.keyword,
  region:this.region,
  deviceId:this.deviceId,
  page:this.page,
 }){
  this.$http.get("/list",paramrs).then("do some thing")
 }
},
watch: {
 requestParams: {
  handler: 'fetchData',
  immediate: true
 }
},

通過增加一個computed屬性,watch這個屬性并設置immediate為true,無需再手動綁定事件,相比之上的方法都要簡潔。當然,缺點就是對性能稍微有些影響,不過問題不大。

2. 使用mixin提取公共部分

很多列表頁其實使用的很多屬性都是一樣的,比如

  • 分頁 page

  • 數量 size

  • 搜索關鍵 字keyword

  • 表格數據 tableData

這些公共的部分其實可以通過mixin來提取出來

/**
 * mixin/table.js
 */
export default {
 data() {
  return {
   keyword: '',
   requestKeyword: '',
   pages: 1,
   size: 10,
   total: 0,
   tableData: []
  }
 }
}

在要用到的頁面

import mixin from '@/mixin/table'
export default {
 mixins: [mixin],
 data() {
  return {   
   selectRegion: '',
   selectDevice: '',
   deviceList: [],
  }
 }
 /* 其他代碼 */
 ...

3. 自動注冊全局組件

正常情況下,我們需要使用一個我們自己封裝的組件時,需要先引入,再注冊,最后才能在template模板中使用。

<template>
 <all-region :selectRegion="selectRegion" @region-change="selectRegion=$event"/>
</template>

<script>
import AllRegion from './baseButton'

export default {
 components: {
  AllRegion,
 }
}
</script>

當有多個頁面需要用到這些組件時,那么就需要在每個需要的頁面重復這些步驟。

為了簡化這些步驟,可以考慮把這些組件作為全局組件來使用,這樣每個頁面需要時,就可以直接使用了。

不過還有一個問題,那就是需要我們手動的全局注冊。

/* main.js */
import Component1 from '@/component/compenent1'
import Component2 from '@/component/compenent2'
import Component3 from '@/component/compenent3'

Vue.component('component1', Component1)
Vue.component('component2', Component2)
Vue.component('component3', Component3)

當組件多了以后,手動注冊也變得繁瑣起來,可以通過require.context()實現自動注冊組件。

/**
 * main.js
 * 讀取componetns下的vue文件并自動注冊全局組件
 */
const requireComponent = require.context('./components', false, /\.vue$/)

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

 const componentConfig = requireComponent(fileName)
 const componentName = fileName.replace(/^\.\//, '').replace(/\.vue/, '')

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

4. 自動注冊vuex模塊

之前我們是這么注冊vuex模塊的

/* module.js */

import alarm from './modules/alarm'
import history from './modules/history'
import factory from './modules/factory'
import contact from './modules/contact'
import company from './modules/company';
import deviceManage from './modules/device-manage'
import deviceModel from './modules/device-model'
import deviceActivation from './modules/device-activation'
import user from './modules/user'
import role from './modules/role'
import setAlarm from './modules/setAlarm'
import factoryMode from "./modules/factoryMode";
import ScreenDeviceWatch from './modules/screen-device-watch'
import ScreenDeviceForecast from './modules/screen-device-forecast'

export default {
 alarm,
 company,
 deviceManage,
 deviceModel,
 user,
 factory,
 contact,
 deviceActivation,
 history,
 role,
 setAlarm,
 factoryMode,
 ScreenDeviceWatch,
 ScreenDeviceForecast,
}

/* index.js */
import Vue from 'vue'
import Vuex from 'vuex'

import state from './state'
import getters from './getters'
import modules from './modules'
import actions from './actions'
import mutations from './mutations'

Vue.use(Vuex)
export default new Vuex.Store({
 state,
 getters,
 mutations,
 actions,
 modules
})

可以發現每個模塊都要我們手動導入,然后加入到module里面,如此重復。當模塊不多還好,假如項目大了,有50個模塊,那就得要做很多重復的工作。

跟注冊組件一樣,我們還是利用require.context來實現。

/**
 * 讀取./modules下的所有js文件并注冊模塊
 */
const requireModule = require.context('./modules', false, /\.js$/)
const modules = {}

requireModule.keys().forEach(fileName => {
 const moduleName = fileName.replace(/(\.\/|\.js)/g, '') 
 modules[moduleName] = {
  namespaced: true,
  ...requireModule(fileName).default
 }
})

export default modules

/* index.js */
import Vue from 'vue'
import Vuex from 'vuex'
import modules from './modules'

Vue.use(Vuex)
export default new Vuex.Store({
 state,
 getters,
 mutations,
 actions,
 modules
})

以上是“如何寫出優雅的vue.js”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

大厂| 洮南市| 沛县| 乌拉特后旗| 长宁区| 孝感市| 镶黄旗| 九寨沟县| 克什克腾旗| 措勤县| 二手房| 迁安市| 河源市| 电白县| 邻水| 福鼎市| 宿州市| 曲阜市| 渑池县| 闽侯县| 泾川县| 黄石市| 察哈| 株洲市| 汪清县| 若尔盖县| 闽侯县| 改则县| 衡水市| 太和县| 仙桃市| 镇安县| 鄂托克前旗| 临武县| 茂名市| 西盟| 定兴县| 扎赉特旗| 浙江省| 电白县| 绍兴县|