Vuex can be used to achieve global state management in vuejs; Vuex is a state management model specially developed for Vue.js applications. It can be used to manage global data and manage the data status of complex applications, such as Brother Communication of components, value passing of multi-layer nested components, etc.
The operating environment of this tutorial: windows7 system, vue2.9.6 version, DELL G3 computer.
Vuex It is a
state management pattern developed specifically for
Vue.js applications. It can manage the data status of complex applications, such as communication between sibling components, value transfer among multi-layer nested components, etc.
The core of vuex:
Install and use vuex
Installation
1. Install in the projectnpm install vuex --save
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { //存放初始数据 count: 0 }, mutations: { //存放修改数据的方法 increment (state) { state.count++ } } })
Use data
Method 1: Use $store call
Use this.$store.state directly in the component to call datathis.$store.state.数据名
Method 2: Import mapState, expand the data in the component and map it. It needs to be written to the calculated attribute. When using it, just write count
//先导入mapState import {mapState} from 'vuex' computed:[ ...mapState(['count']) ]
When operating on data, the state data cannot be called directly. If you want to modify the data, you need to write a method in the mutation. The purpose is to make it easier to find where to find the problem.
The function and usage of Mutations
mutations is to write methods to operate on datamutations: { //存放修改数据的方法 add(state) { state.count++ } }
Usage method one:
Trigger the mutations function, use commit to call the method name inside this.$store.commit This is the first way to trigger mutationsmethods:{ handle(){ this.$store.commit('add') } }
mutations pass Two parameters can be passed in the parameter mutation method. The first is state, and the second is the custom parameter payload
mutations: { //存放修改数据的方法 addN(state,N) { state.count+=N } }
methods:{ handle2(){ //触发mutation并传参 this.$store.commit('addN',4) } }
Use method two
Import the mapMutations function in vuex into the componentmapMutations(['sub']) is the comparison between the methods inside and The method in the store is mapped
import {mapMutations} from 'vuex' methods:{ //将方法名写在[]里 ['addN','sub'] ...mapMutations(['sub']) btnhandle(){ //调用时直接写this.方法名 this.sub() //当传入参数时,直接写这个参数,不需要写state this.addN(4) } }
Note: You cannot write asynchronous code in the Mutation function; for example, writing a timed function, although the page will change, but the actual status value will not change. So there is the usage of actions
Actions
Action is used to handle asynchronous tasks. If the data is changed through asynchronous operation, it must be done through Action instead of Mutation. However, the data must still be changed indirectly by triggering Mutation in Action. It is at the same level as mutations in the store. Write an actions:{ } call the mutations method in it, and then trigger Actions in the componentmutations: { //存放修改数据的方法 add(state) { state.count++ } }, actions:{ //context是上下文 addAsync(context){ setTimeout(()=>{ //调用add方法,actions中不能直接修改state中的数据,只有mutation有这个权力 context.commit('add') }) } }
Use actionsTo use dispatch in the component to trigger
btnHandle(){ //dispatch专门触发action this.$store.dispatch('addAsync') }
Transfer parameters in actions
Write formal parameters in store actions and mutationsmutations: { //传参 addN(state,n) { state.count+=n } }, actions:{ //context是上下文 addAsync(context,n){ setTimeout(()=>{ //调用add方法,并传参 context.commit('addN',n) }) } }
btnHandle(){ //dispatch专门触发action,并传入参数 this.$store.dispatch('addAsync',5) }
The second is to expand and map Introduce mapActions
//引入方法 import {mapActions} from 'vuex methods:{ //映射actions ...mapActions(['addAsync']) btnhandle(){ //调用对应的actions this.addAsync() } } //也可以不写btnhandle方法了直接将映射的方法名写在点击操作上
Note: Call the actions method in the component, and use commit in actions to call the mutations method
getters
state:{ count:0 }, getters:{ showNum(state){ return '当前最新的数据是:'+state.count } }
The first calling method: this.$store.getters.method Name
this.$store.getters.showNum
The second calling method: mapping expansion, mapping in computed
import {mapGetters} from 'vuex' computed:{ ...mapGetters(['showNum']) }
is used to store initial data and perform data initialization. It is best not to call state directly in the component
which stores the data Methods for performing operations, but asynchronous operations cannot be performed
There are methods for performing asynchronous operations
are used for data in the Store Perform processing to form new data
vue.js Tutorial"
The above is the detailed content of How to implement global state management in vuejs. For more information, please follow other related articles on the PHP Chinese website!