來源: 前端全棧君丶 發(fā)布時(shí)間:2018-12-04 13:55:54 閱讀量:837
本文參考自油管上某個(gè)國外大神的公開演講視頻,學(xué)習(xí)了一下覺得很不錯(cuò),所以在項(xiàng)目中也使用了這些不錯(cuò)的技巧。
1. watch 與 computed 的巧妙結(jié)合
如上圖,一個(gè)簡單的列表頁面。
你可能會(huì)這么做:
created(){
this.fetchData()
},
watch: {
keyword(){
this.fetchData()
}
}
1
2
3
4
5
6
7
8
9
如果參數(shù)比較多,比如上圖
關(guān)鍵字篩選,
區(qū)域篩選,
設(shè)備ID篩選,
分頁數(shù),
每頁幾條數(shù)據(jù),
可能會(huì)是這樣:
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)
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
前端全棧學(xué)習(xí)交流圈:866109386,面向1-3經(jīng)驗(yàn)?zāi)昵岸碎_發(fā)人員,幫助突破技術(shù)瓶頸,提升思維能力
群內(nèi)有大量PDF可供自取,更有干貨實(shí)戰(zhàn)項(xiàng)目視頻進(jìn)群免費(fèi)領(lǐng)取。
不過這么寫,明顯有問題,主要是watch了很多參數(shù),而且函數(shù)的處理都差不多,可以修改一下,通過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()
}
//前端全棧學(xué)習(xí)交流圈:866109386
//面向1-3經(jīng)驗(yàn)?zāi)昵岸碎_發(fā)人員
//幫助突破技術(shù)瓶頸,提升思維能力
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
當(dāng)然這么寫,需要在模板里面每個(gè)參數(shù)change的地方綁定事件,并傳遞參數(shù)值,比如分頁change時(shí):
<el-pagination
layout="total, prev, pager, next, jumper"
:total="total"
prev-text="上一頁"
next-text="下一頁"
@current-change="paramsChange('page',$event)"
>
</el-pagination>
1
2
3
4
5
6
7
8
相比上面的各種watch,代碼明顯少了很多,但是還有一個(gè)問題,那就是要在template的很多地方綁定change事件。
最后,當(dāng)然是使用我們重點(diǎn)推薦的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
}
},
//前端全棧學(xué)習(xí)交流圈:866109386
//面向1-3經(jīng)驗(yàn)?zāi)昵岸碎_發(fā)人員
//幫助突破技術(shù)瓶頸,提升思維能力
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
通過增加一個(gè)computed屬性,watch這個(gè)屬性并設(shè)置immediate為true,無需再手動(dòng)綁定事件,相比之上的方法都要簡潔。當(dāng)然,缺點(diǎn)就是對(duì)性能稍微有些影響,不過問題不大。
2. 使用mixin提取公共部分
很多列表頁其實(shí)使用的很多屬性都是一樣的,比如
分頁 page
數(shù)量 size
搜索關(guān)鍵 字keyword
表格數(shù)據(jù) tableData
這些公共的部分其實(shí)可以通過mixin來提取出來
/**
* mixin/table.js
*/
export default {
data() {
return {
keyword: '',
requestKeyword: '',
pages: 1,
size: 10,
total: 0,
tableData: []
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
在要用到的頁面
import mixin from '@/mixin/table'
export default {
mixins: [mixin],
data() {
return {
selectRegion: '',
selectDevice: '',
deviceList: [],
}
}
/* 其他代碼 */
...
1
2
3
4
5
6
7
8
9
10
11
12
3. 自動(dòng)注冊(cè)全局組件
正常情況下,我們需要使用一個(gè)我們自己封裝的組件時(shí),需要先引入,再注冊(cè),最后才能在template模板中使用。
<template>
<all-region :selectRegion="selectRegion" @region-change="selectRegion=$event"/>
</template>
<script>
import AllRegion from './baseButton'
export default {
components: {
AllRegion,
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
當(dāng)有多個(gè)頁面需要用到這些組件時(shí),那么就需要在每個(gè)需要的頁面重復(fù)這些步驟。
為了簡化這些步驟,可以考慮把這些組件作為全局組件來使用,這樣每個(gè)頁面需要時(shí),就可以直接使用了。
不過還有一個(gè)問題,那就是需要我們手動(dòng)的全局注冊(cè)。
/* 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)
1
2
3
4
5
6
7
8
當(dāng)組件多了以后,手動(dòng)注冊(cè)也變得繁瑣起來,可以通過require.context()實(shí)現(xiàn)自動(dòng)注冊(cè)組件。
/**
* main.js
* 讀取componetns下的vue文件并自動(dòng)注冊(cè)全局組件
*/
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)
})
1
2
3
4
5
6
7
8
9
10
11
12
13
4. 自動(dòng)注冊(cè)vuex模塊
之前我們是這么注冊(cè)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
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
可以發(fā)現(xiàn)每個(gè)模塊都要我們手動(dòng)導(dǎo)入,然后加入到module里面,如此重復(fù)。當(dāng)模塊不多還好,假如項(xiàng)目大了,有50個(gè)模塊,那就得要做很多重復(fù)的工作。
跟注冊(cè)組件一樣,我們還是利用require.context來實(shí)現(xiàn)。
/**
* 讀取./modules下的所有js文件并注冊(cè)模塊
*/
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
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
最后
---------------------
在線
客服
服務(wù)時(shí)間:周一至周日 08:30-18:00
選擇下列產(chǎn)品馬上在線溝通:
客服
熱線
7*24小時(shí)客服服務(wù)熱線
關(guān)注
微信
關(guān)注官方微信