Synchronous data and asynchronous data in Vuex state
In Vuex, data storage is mainly throughstate
to implement, and the data modification is throughmutations
andactions
Come to manage.
mutations
Used to modify the state synchronously, andactions
This is used to process asynchronous operations and submit after the asynchronous operations are completed.mutations
to modify the status.
Synchronize data (State and Mutations)
-
State: Vuex's
state
The attribute defines the status of the application. - It's similar to the component
data
property, but it is global and can be accessed by all components.
const store = new ({ state: { count: 0 } });
-
Mutations:
mutations
It's modifiedstate
the only way to do it. - They must be synchronous functions, because Vuex's debugging tools rely on tracing
mutations
order of call.
const store = new ({ state: { count: 0 }, mutations: { increment(state) { ++; } } });
Asynchronous data (Actions)
-
Actions:
actions
Used to handle asynchronous operations. - They can contain any asynchronous operations, such as API calls, and then submitted after the operation is completed.
mutations
to modify the status.
const store = new ({ state: { count: 0 }, mutations: { increment(state) { ++; } }, actions: { asyncIncrement({ commit }) { setTimeout(() => { commit('increment'); }, 1000); } } });
the difference
-
Synchronous vs asynchronous:
mutations
Must be synchronous, which meansmutations
Any operations performed in the processing function must be effective immediately. andactions
Can contain asynchronous operations, they can be submittedmutations
Execute asynchronous code before. -
debug:because
mutations
It is synchronous, and Vuex's debugging tool can accurately track state changes. Asynchronous operations may cause the time point of state change to be unclear, soactions
Don't modify the status directly, but submit itmutations
Come to modify. -
Use scenarios: When you need to perform synchronization operations to modify the state, you should use
mutations
. When you need to perform asynchronous operations (such as API calls), you should useactions
and submit after the asynchronous operation is completedmutations
。
Understand and use correctly in practical applicationsmutations
andactions
It is critical to maintain consistency and maintainability of Vuex state management.
In this way, it is ensured that the state changes are predictable and can be effectively tracked and debugged.
Summarize
The above is personal experience. I hope you can give you a reference and I hope you can support me more.