gpt4 book ai didi

javascript - Vuex 2.0 Dispatch 与 Commit

转载 作者:IT王子 更新时间:2023-10-29 03:12:06 26 4
gpt4 key购买 nike

有人可以解释一下什么时候使用调度和提交吗?

我了解提交会触发突变,而派发会触发操作。

但是,调度不也是一种 Action 吗?

最佳答案

正如您所说的那样,$dispatch 触发一个 Action ,而 commit 触发一个突变。以下是如何使用这些概念:

您始终在路由/组件的方法中使用 $dispatch$dispatch 向您的 vuex 存储发送消息以执行某些操作。该操作可以在当前报价之后的任何时间完成,这样您的前端性能就不会受到影响。

您永远不会从您的任何组件/路由提交。它在一个操作中完成,并且当您有一些数据要提交时。原因:提交是同步的,在完成之前可能会卡住您的前端。

让我们考虑这种情况:如果您必须从服务器获取一些 json 数据。在这种情况下,您需要异步执行此操作,以便您的用户界面不会暂时无响应/卡住。因此,您只需 $dispatch 一个操作并期望它稍后完成。您的操作承担此任务,从服务器加载数据并稍后更新您的状态。

如果您需要知道一个 Action 何时完成,以便您可以显示一个 ajax 微调器直到那时,您可以返回一个 Promise,如下所述(例如:加载当前用户):

下面是定义“loadCurrentUser”操作的方式:

actions: {
loadCurrentUser(context) {
// Return a promise so that calling method may show an AJAX spinner gif till this is done
return new Promise((resolve, reject) => {
// Load data from server
// Note: you cannot commit here, the data is not available yet
this.$http.get("/api/current-user").then(response => {
// The data is available now. Finally we can commit something
context.commit("saveCurrentUser", response.body) // ref: vue-resource docs
// Now resolve the promise
resolve()
}, response => {
// error in loading data
reject()
})
})
},
// More actions
}

在您的突变处理程序中,您执行所有源自操作的提交。以下是定义“saveCurrentUser”提交的方式:

mutations: {
saveCurrentUser(state, data) {
Vue.set(state, "currentUser", data)
},
// More commit-handlers (mutations)
}

在您的组件中,当它被创建安装 时,您只需调用如下所示的操作:

mounted: function() {
// This component just got created. Lets fetch some data here using an action
// TODO: show ajax spinner before dispatching this action
this.$store.dispatch("loadCurrentUser").then(response => {
console.log("Got some data, now lets show something in this component")
// TODO: stop the ajax spinner, loading is done at this point.
}, error => {
console.error("Got nothing from server. Prompt user to check internet connection and try again")
})
}

如上所示返回一个 Promise 完全是可选的,也是一个并非每个人都喜欢的设计决定。关于是否返回 Promise 的详细讨论,您可以阅读此答案下的评论:https://stackoverflow.com/a/40167499/654825

关于javascript - Vuex 2.0 Dispatch 与 Commit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40390411/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com