2021-02-03

## Vuex

Vuex是一個專為Vue.js應(yīng)用程序開發(fā)的**狀態(tài)管理模式**嘱吗。

調(diào)試工具:vue devtools

> Vuex就像眼鏡:您自會知道什么時候需要它。

### 1俄讹,狀態(tài)

在商店中定義數(shù)據(jù),在組件中直接使用:

目錄:`store / index.js`

```js

導(dǎo)出默認(rèn)的新Vuex.Store({

? ? //狀態(tài)等于組件中的數(shù)據(jù)耻蛇,專門存放到堆積的數(shù)據(jù)

? ? 狀態(tài):{

? ? ? ? 數(shù):0

? ? },

? ? 吸氣劑:{}跃捣,

? ? 變異:{},

? ? 動作:{}娶聘,

? ? 模塊:{}

})

```

目錄:`Home.vue`

html

<模板>

? <div class =“ home”>

? ? <h2>主頁頁面的數(shù)字:{{$ store.state.num}} </ h2>

? </ div>

</ template>

<腳本>

export default {


}

</script>

```

或者寫為:

```html

<template>

? <div class="about">

? ? <h2>About頁面的數(shù)字:{{num}}</h2>

? </div>

</template>

<script>

export default {

? computed: {

? ? num(){

? ? ? return this.$store.state.num

? ? }

? }

}

</script>

```

### 2、getters

將組件中統(tǒng)一使用的computed都放到getters里面來操作

目錄:`store/index.js`

```js

export default new Vuex.Store({

? ? // state相當(dāng)于組件中的data牺氨,專門用來存放全局的數(shù)據(jù)

? ? state: {

? ? ? ? num: 0

? ? },

? ? // getters相當(dāng)于組件中的computed酝豪,getters是全局的精堕,computed是組件內(nèi)部使用的

? ? getters: {

? ? ? ? getNum(state) {

? ? ? ? ? ? return state.num

? ? ? ? }

? ? },

? ? mutations: {},

? ? actions: {},

? ? modules: {}

})

```

目錄:`Home.vue`

```html

<template>

? <div class="home">

? ? <h2>Home頁面的數(shù)字:{{$store.getters.getNum}}</h2>

? </div>

</template>

<script>

export default {


}

</script>

```

### 3瘫证、mutations

更改 Vuex 的 store 中的狀態(tài)的唯一方法是提交 mutation。

目錄:`store/index.js`

```js

export default new Vuex.Store({

? ? // state相當(dāng)于組件中的data庄撮,專門用來存放全局的數(shù)據(jù)

? ? state: {

? ? ? ? num: 0

? ? },

? ? // getters相當(dāng)于組件中的computed背捌,getters是全局的,computed是組件內(nèi)部使用的

? ? getters: {

? ? ? ? getNum(state) {

? ? ? ? ? ? return state.num

? ? ? ? }

? ? },

? ? // mutations相當(dāng)于組件中的methods洞斯,但是它不能使用異步方法(定時器毡庆、axios)

? ? mutations: {

? ? ? ? // 讓num累加

? ? ? ? // payload是一個形參坑赡,如果組件在commit時,有傳這個參數(shù)過來么抗,就存在毅否,如果沒有傳過來,就是undefined

? ? ? ? increase(state, payload){

? ? ? ? ? ? state.num += payload ? payload : 1;

? ? ? ? }

? ? },

? ? actions: {},

? ? modules: {}

})

```

目錄:`Btn.vue`

```html

<template>

? ? <div>

? ? ? ? <button @click="$store.commit('increase', 2)">點擊加1</button>

? ? </div>

</template>

<script>

export default {

? methods: {

? ? ? /* addFn(){

? ? ? ? ? // 調(diào)用store中的mutations里的increase方法

? ? ? ? ? // 傳參的話蝇刀,使用payload

? ? ? ? ? this.$store.commit('increase', 2)

? ? ? } */

? }

}

</script>

```

### 4螟加、actions

actions是store中專門用來處理異步的站粟,實際修改狀態(tài)值的,還是mutations

目錄:`store/index.js`

```js

// 在store(倉庫)下的index.js這份文件,就是用來做狀態(tài)管理

import Vue from 'vue'

import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({

? ? // state相當(dāng)于組件中的data,專門用來存放全局的數(shù)據(jù)

? ? state: {

? ? ? ? num: 0

? ? },

? ? // getters相當(dāng)于組件中的computed蹦渣,getters是全局的,computed是組件內(nèi)部使用的

? ? getters: {

? ? ? ? getNum(state) {

? ? ? ? ? ? return state.num

? ? ? ? }

? ? },

? ? // mutations相當(dāng)于組件中的methods,但是它不能使用異步方法(定時器涂屁、axios)

? ? mutations: {

? ? ? ? // 讓num累加

? ? ? ? // payload是一個形參帖族,如果組件在commit時,有傳這個參數(shù)過來,就存在,如果沒有傳過來,就是undefined

? ? ? ? increase(state, payload){

? ? ? ? ? ? state.num += payload ? payload : 1;

? ? ? ? },

? ? ? ? // 讓num累減

? ? ? ? decrease(state){

? ? ? ? ? ? state.num--;

? ? ? ? }

? ? },

? ? // actions專門用來處理異步,實際修改狀態(tài)值的,依然是mutations

? ? actions: {

? ? ? ? // 點擊了“減1”按鈕后,放慢一秒再執(zhí)行減法

? ? ? ? decreaseAsync(context){

? ? ? ? ? ? context.commit('decrease')

? ? ? ? }

? ? },

? ? modules: {}

})

```

目錄:`Btn.vue`

```html

<template>

? ? <div>

? ? ? ? <button @click="$store.commit('increase', 2)">點擊加1</button>

? ? ? ? <button @click="$store.dispatch('decreaseAsync')">點擊延遲減1</button>

? ? </div>

</template>

<script>

export default {

? methods: {

? ? ? /* addFn(){

? ? ? ? ? // 調(diào)用store中的mutations里的increase方法

? ? ? ? ? // 傳參的話棍好,使用payload

? ? ? ? ? this.$store.commit('increase', 2)

? ? ? }

? ? ? reduceFn(){

? ? ? ? ? this.$store.dispatch('decreaseAsync')

? ? ? } */

? }

}

</script>

```

### 5、輔助函數(shù)

mapState和mapGetters在組件中都是寫在computed里面

```html

<template>

<div>

? ? ? ? <h2>Home頁面的數(shù)字:{{num}}</h2>

? ? ? ? <h2>About頁面的數(shù)字:{{getNum}}</h2>

? ? </div>

</template>

<script>

import { mapState, mapGetters } from 'vuex'

export default {

? computed: {

? ? ...mapState(['num'])

? ? ...mapGetters(['getNum'])

? }

}

</script>

```

mapMutations和mapActions在組件中都是寫在methods里面

```html

<template>

<div>

? ? ? ? <button @click="increase(2)">點擊加1</button>

? ? ? ? <button @click="decreaseAsync()">點擊延遲減1</button>

? ? </div>

</template>

<script>

import { mapMutations, mapActions } from 'vuex'

export default {

? methods: {

? ? ? ...mapMutations(['increase']),

? ? ? ...mapActions(['decreaseAsync'])

? }

}

</script>

```

### 6积糯、拆分寫法

store中的所有屬性跨嘉,都可以拆分成單獨的js文件來書寫

### 7、modules

![](.\1111.png)我們的store可以認(rèn)為是一個主模塊嘱支,它下邊可以分解為很多子模塊,子模塊都可以單獨領(lǐng)出來寫,寫完再導(dǎo)入到主模塊中瞄桨。下面以 `users` 子模塊舉例:

將mutations中所有的方法乳讥,歸納起來淋硝。

目錄:`mutations_type.js`

```js

export const MUTATIONS_TYPE = {

? ? INCREASE: 'increase',

? ? DECREASE: 'decrease'

}

export default {

? ? // 讓num累加

? ? // payload是一個形參继谚,如果組件在commit時,有傳這個參數(shù)過來,就存在,如果沒有傳過來扒吁,就是undefined

? ? [MUTATIONS_TYPE.INCREASE](state, payload){

? ? ? ? state.num += payload ? payload : 1;

? ? },

? ? //讓num累減

? ? [MUTATIONS_TYPE.DECREASE](州){

? ? ? ? state.num--;

? ? }

}

```

目錄:`store / index.js`

```js

從'./mutaions_type'導(dǎo)入突變

導(dǎo)出默認(rèn)的新Vuex.Store({

? ? ...

? ? 突變

? ? ...

})

```

組件中:

html

<模板>

? <div class =“ about”>

? ? <h2>關(guān)于頁面的數(shù)字:{{getNum}} </ h2>

? ? <button @ click =“ increase()”>關(guān)于的按鈕,點擊加1 </ button>

? </ div>

</ template>

<腳本>

從“ vuex”導(dǎo)入{mapGetters抖僵,mapMutations}

從'@ / store / mutaions_type.js'導(dǎo)入{MUTATIONS_TYPE}

導(dǎo)出默認(rèn)值{

? 計算值:{

? ? ... mapGetters(['getNum'])

? }呻征,

? 方法: {

? ? //方法一:

? ? ... mapMutations([[MUTATIONS_TYPE.INCREASE])


? ? //方法二:

? ? /* 增加(){

? ? ? this灾锯。$ store.commit(MUTATIONS_TYPE.INCREASE)

? ? } * /

? }

}

</ script>

```

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末帽蝶,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌妆绞,老刑警劉巖蹦掐,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件晶默,死亡現(xiàn)場離奇詭異蝴悉,居然都是意外死亡,警方通過查閱死者的電腦和手機簇抵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門碟摆,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事躺翻。” “怎么了溉躲?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵蛔六,是天一觀的道長荆永。 經(jīng)常有香客問我,道長国章,這世上最難降的妖魔是什么屁魏? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮捉腥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘你画。我一直安慰自己抵碟,他們只是感情好桃漾,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著拟逮,像睡著了一般撬统。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上敦迄,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天恋追,我揣著相機與錄音,去河邊找鬼罚屋。 笑死苦囱,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的脾猛。 我是一名探鬼主播撕彤,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼猛拴!你這毒婦竟也來了羹铅?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤愉昆,失蹤者是張志新(化名)和其女友劉穎职员,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體跛溉,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡焊切,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了倒谷。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蛛蒙。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖渤愁,靈堂內(nèi)的尸體忽然破棺而出牵祟,到底是詐尸還是另有隱情,我是刑警寧澤抖格,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布诺苹,位于F島的核電站,受9級特大地震影響雹拄,放射性物質(zhì)發(fā)生泄漏收奔。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一滓玖、第九天 我趴在偏房一處隱蔽的房頂上張望坪哄。 院中可真熱鬧,春花似錦、人聲如沸翩肌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽念祭。三九已至兑宇,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間粱坤,已是汗流浹背隶糕。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留站玄,地道東北人枚驻。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像蜒什,于是被迫代替她去往敵國和親测秸。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 配置 vuex 和 vuex 本地持久化 目錄 vuex是什么 vuex 的五個核心概念State 定義狀態(tài)(變量...
    稻草人_9ac7閱讀 883評論 0 5
  • 目錄 vuex是什么 vuex 的五個核心概念State 定義狀態(tài)(變量)Getter 獲取狀態(tài)(變量的值)Mut...
    北冥有魚_425c閱讀 731評論 0 5
  • 那如何獲取到state的數(shù)據(jù)呢灾常? 一般會在組件的計算屬性(computed)獲取state的數(shù)據(jù)(因為霎冯,計算屬性會...
    qiaoguoxing閱讀 97評論 0 0
  • ##模塊化開發(fā) 瀏覽器只支持`ES6`的模塊化,其他的需要使用`webpack`處理后才能在瀏覽器上使用 模塊化是...
    Hachim閱讀 385評論 0 0
  • ### store 1. Vue 組件中獲得 Vuex 狀態(tài) ```js //方式一 全局引入單例類 // 創(chuàng)建一...
    蕓豆_6a86閱讀 726評論 0 3