|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
Vuex 的用法详解
+ l. u G; W/ v( z w' R- A0 O; z+ G# ?) W
本案例测试下Vuex的使用,创建一个新的web项目' N' m( c8 Y6 R7 C& n6 ?4 n& t
Vue init webpack web! L# |- S/ [; d- O
安装vuex
1 w9 f/ i1 H, k4 Pnpm install vuex --save0 ]* I+ {" C8 J5 A) Y# J) n
启动, npm run dev,打开localhost:8080 即可
4 @. _# d7 Y- ~6 k+ k* N1 d4 @; f! l0 b5 H4 M# T
! f$ P6 Y6 S5 Z1 w- D
(1)引入vuex
Q7 y$ }/ J& t$ M$ h5 N; T. Q创建一个src/store文件夹,创建index.js , 引入并导出store+ o6 i( j/ u1 V" y( y A
import Vue from 'vue'3 r% K( S, Q5 L; g. U" H# y$ B$ m2 V
import Vuex from 'vuex', b* z3 M' ~9 @2 ?/ x6 b0 R
Vue.use(Vuex);- }4 j) s7 c# Y, U2 b5 e
const store = new Vuex.Store({
3 t. O' q5 d! s) K4 P5 L6 Q M})" K& }, A/ z7 ~2 l' c
export default store;
, `2 t6 Y' ]* j0 M0 {* z# U4 @7 W4 Q3 H1 K c7 D
(2)引入store到main.js
: d) L: a9 y1 E( M6 k! timport Vue from 'vue'
0 y/ e: X' Z/ X0 ^2 e; k# Dimport App from './App': X1 {- c+ f2 q1 ?- E# L! Q
import store from './store': r( }0 R! X# x4 \9 X* w) t
7 }8 i% G( t" H7 g
Vue.config.productionTip = false
, Z3 X& H8 a: E9 A7 ]$ b. g2 ]4 y
/* eslint-disable no-new */) [2 E* b5 A# Y1 v# P8 F% n
new Vue({
, x& v' ~ n9 P0 H. \' h- G8 X4 D el: '#app',% s! n" j5 ~* \1 W4 p! v
store,
* ]1 Q* |6 x* T. g+ z0 T components: { App },
8 e5 u2 Y$ k5 E0 y" Z4 R3 S template: '<App/>'
/ ?# E" F! h' J9 _: R# K})
" Q1 U, M$ L( ?% P4 d, {% M1 G, @: y( ?5 }' j
- |& R& `: \' _
# _( G I2 \' r" E0 e1 \, V(3) 修改 helloword.vue ,先使用state获取值进行测试
8 t( Y, j; R1 q! q1 r0 u' cState: vuex中的数据源,我们需要保存的数据就保存在这里,可以在页面通过 this.$store.state来获取我们定义的数据;( h8 ]; ~6 T! U$ }
const store = new Vuex.Store({
9 O0 L; s9 v7 n2 t, _& z+ [6 r state: {8 a0 D" V) n0 j5 w5 f$ q
count:1! G. G9 B6 N4 e6 l$ s8 L! H/ h
}3 y5 B% K' M* b- _" F- N
})
' M8 O: H# C5 ?! v. c! _" z& j' p4 [8 X. N% }3 f$ ^/ C; ~
helloword.vue----
+ o- p- Q* A' h+ f+ L8 K2 v<template>
6 W8 ~& m+ K% ]+ `; e9 [ <div class="hello">
5 e6 W% N/ c9 Q5 f
5 J+ g5 q* D- f <h2>{{this.$store.state.count}}</h2>
% G: ]* P6 @+ x7 m
: X/ U0 }1 T6 e. Y- D2 j$ ] </div>- W( u) B0 o5 ~3 a% W
</template>
/ F& T% E! B; n+ X7 A1 v7 z8 {7 N7 W' j
9 m2 `7 B6 u2 ^6 _" a! J/ b+ I显示结果为: 1 ; c: [. Z/ @/ J* u
0 p+ I) ~- t. F8 j# `
# A @- i& Z8 R( S% ?% F" X(4)Getter相当于vue中的computed计算属性,getter 的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算,这里我们可以通过定义vuex的Getter来获取,Getters 可以用于监听、state中的值的变化,返回计算后的结果,这里我们修改Hello World.vue文件如下:
& x i/ C! ?; ^ l1 J' z, [
0 c* {- k$ ~! f4 f, @: w& Fconst store = new Vuex.Store({
( f. ~3 \( Z# G. n" y% l state: {4 o3 P( m+ _3 R
count:1/ @" a, B }4 a8 T& R4 [
},
5 Q9 t7 i& t8 w+ L/ y7 y& P% i2 o getters:{
# B5 r5 p+ l8 }% M4 i- l getStateCount:state=>{2 Q, N1 L/ b d
return state.count + 1;* M$ j4 u' o; d0 c2 `5 F( i
}' y# X4 R1 t% ?. I
}2 m* G" N# o2 P' C* D: u0 V
})
9 p; s% g1 @2 G/ a& S8 o |# o9 X3 |8 [; y8 ^1 _
<template>
* V: a* F8 H0 r8 `1 A <div class="hello">
6 c) s8 n k9 ?9 A3 z' y" ~) R* O3 u, D
<h2>StateValue: {{this.$store.state.count}}</h2>
/ Y# t9 m& n& F k+ |6 t( t <h2>GettesVaule: {{this.$store.getters.getStateCount}}</h2>
5 L3 ^# W8 j$ }; ? H </div>, z R z# g! ^' o j% y9 P
</template>
/ J [2 ?" U, A0 Q8 H, f
( l# ]2 }* x1 o, c7 F) J( k% z) _( N7 @6 L
显示结果:( R: H+ k, ?2 y W. x
StateValue: 1GettesVaule: 2
! I) R1 U4 p, U& O
$ [6 X. E2 {+ m$ Z1 r(5)
0 u! H, r/ q$ Y9 P: KMutations: 数据我们在页面是获取到了,但是如果我们需要修改count值怎么办?如果需要修改store中的值唯一的方法就是提交mutation来修改,我们现在Hello World.vue文件中添加两个按钮,一个加1,一个减1;这里我们点击按钮调用addFun(执行加的方法)和reductionFun(执行减法的方法),然后在里面直接提交mutations中的方法修改值: " k7 x ~1 s' [8 I+ n
修改index.js文件,添加mutations,在mutations中定义两个函数,用来对count加1和减1,这里定义的两个方法就是上面commit提交的两个方法如下:
0 ?# C# p0 N/ _9 Rmutations:{2 B8 _! `+ V+ O$ U1 W
add(state){) Q: e, i; I7 n. H& o0 [
state.count = state.count + 1;, L; ~; A0 X- [- p: j- i" i# R
},
7 X5 }6 G' j0 o4 P reduce(state){ W+ Y U! A2 @4 z) Z2 O4 R
state.count = state.count - 1;( d+ U0 r- ?* ^
}
E( _. _ Q4 \; w4 n+ r }
) h, N U1 a9 z" z$ J<template>
6 q$ ^2 |) Q8 E& Y N- j8 ?8 T <div class="hello">/ E0 L) ~% O8 O; o! s
<h1>Actions:</h1>
/ M% ]1 l. ?/ U <el-button type="primary" @click="addFunc()">Add</el-button>, D4 K8 j5 x; m5 d5 A" Y
<el-button type="Secondary" @click="reduceFunc()">Reduce</el-button>
9 s1 l a" C. M& S <h2>StateValue: {{this.$store.state.count}}</h2>' u) W+ R5 t) _( y' [. [/ C
<h2>GettesVaule: {{this.$store.getters.getStateCount}}</h2>
/ v$ x2 ?( q6 v: c </div>& I/ ]% p% l- S6 H
</template>" u% I6 K8 S& w3 B+ T
7 k0 y& |( q6 O j
# d3 p$ `' @( o. b结果:
& B, T/ I9 ~# c2 ^% M
; `7 d: b7 ]8 u+ i" S+ N3 D$ `' q6 i4 U$ e& {$ x; e
Actions:Add ReduceStateValue: 5GettesVaule: 6
d$ U/ \5 X9 o3 |) w" S1 \) Z8 x$ D0 d% `# l
4 s8 T+ t2 h3 q' r4 g2 H* h
, K8 W/ e6 a* ?, z; R8 Z5 M1 Y6 S+ G, t/ R7 \: B1 r
+ m8 Q7 p, C$ r6 w
( C% E: j5 F7 n. A; M7 T
6 W- J9 }% R$ w- |* V/ m
: ]( \; W- }4 u, v(6)Actions:
/ P4 Q2 N( V7 u! Y, G. Q9 i( v我们看到,当点击三次后值从2变成了-1;页面上的值是改变了;我们达到了修改store中状态值的目的,但是,官方并不介意我们这样直接去修改store里面的值,而是让我们去提交一个actions,在actions中提交mutation再去修改状态值,接下来我们修改index.js文件,先定义actions提交mutation的函数:
* e& Q; Y8 m/ ~" w" n- d + r" T5 p* b) D$ O2 S Q% V! t
mutations:{
2 [7 Q: ^9 N- d6 Z* J add(state){
' |$ X) n& v9 K9 b5 Y1 [8 w, G+ S3 f state.count = state.count + 1;
! k& j1 R$ a, c1 N },1 b! N4 P8 x" y+ T8 ~: J" h
reduce(state){3 g+ g6 |2 w. j" m7 C7 U
state.count = state.count - 1;
# Z+ U/ c. [5 i" q }
2 v7 g: k% O( U8 k% C) i& X' s: f' s },; Q8 Z6 P8 D6 N! z9 I
actions:{ B$ U( }9 J3 }6 o+ x$ K
addFunc(context){- P0 ^; A# r1 p4 Z
context.commit("add");
0 Z5 G1 v* r* r4 v X' i },* V2 J2 z( c/ ?+ R; p
reduceFunc(context){7 E* X4 y$ N2 g( ]( m3 ]9 O8 y7 {
context.commit("reduce");0 t9 q0 o+ X0 _- c. D& f
}+ M: p( n: _) f" P- s% _6 `! [
}; }* t# q! Z4 e5 Q9 p) [8 Z# }
5 Z' f2 B6 I- J) q
$ O6 l3 q3 m% Q p& X X# f * \; l6 G7 g3 P% w( w) `
methods:{
8 d$ F2 l" m% m9 Z$ I addFunc(){5 X2 J" a+ m& t( i6 j+ b
//this.$store.commit("add");$ h) B5 q0 m5 C$ r: Q7 Q; ]6 P6 H
this.$store.dispaTCh("addFunc");
' N% Y9 ^7 v4 a& f$ j2 B% V7 ? },
) [" t+ y/ Z5 p, q1 p: a& k reduceFunc(){4 B v' X% J; h
//this.$store.commit("reduce");
- c( W; u# w6 h5 z, P8 T% U R this.$store.dispatch("reduceFunc");* N/ D, E3 k3 a% U
} A8 X! J4 j4 @" o `
}
8 k F; h% b: x9 y/ u' M' `" i
. z, b+ V7 N7 x+ }5 C \这里我们把commit提交mutations修改为使用dispatch来提交actions;我们点击页面,效果是一样的3 j1 r$ B) e4 \# p( a' V. k3 v f
实现效果一样!!!!5 q1 o# P6 |4 g& b, A# C
8 x) r; n3 Q9 W% }! Q _0 j( y
) \& I0 d. z2 G, h) s/ d# j! |, e
- b! K( G8 J" z& f# \/ q% g* ?2 q, |( E( ~+ C; n" x9 d, h% T
4 g- Y2 J" @8 t W* Y- b ~
1 B$ @! R) K( [3 R
$ X8 q M* _0 a" K6 Z% D3 e& o0 [+ |
" J# A5 z) `( C5 _: Z7 v" w1 j: N7 [, K" E9 ^* Q
3 n8 a+ t! u/ B6 ]
! j! w4 x7 S$ \$ @) K
: g! E, ~/ G! b0 Y
0 ^3 P& R7 ~8 ~$ Y/ M8 J+ b1 l; T9 R. ?3 O
5 `6 |1 o4 p" q) k
* |( e0 ~! t" m2 X2 D4 A
|
|