我刚刚开始在这里学习 Vuex。到目前为止,我一直将共享数据存储在 store.js
文件中,并在每个模块中导入 store
但这很烦人,我担心状态会发生变化。
我正在努力解决的是如何使用 Vuex 从 firebase 导入数据。据我所知,只有操作才能进行异步调用,但只有突变才能更新状态?
现在我正在从我的突变对象调用 firebase 并且它似乎工作正常。老实说,所有的上下文、提交、调度等似乎有点过载。我只想能够使用最少的 Vuex 来提高工作效率。
在文档中,看起来我可以编写一些代码来更新mutations对象中的状态,如下所示,将其导入到computed
属性中的组件中,然后使用store.commit('increment')
触发状态更新。这似乎是使用 Vuex 所需的最低数量,但是 Action 从何而来?困惑:(任何有关执行此操作的最佳方法或最佳实践的帮助将不胜感激!
const store = new Vuex.Store({
state: {
count: 0
},
mutations: {
increment (state) {
state.count++
}
}
})
我的代码在下面
商店.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex);
const db = firebase.database();
const auth = firebase.auth();
const store = new Vuex.Store({
state: {
userInfo: {},
users: {},
resources: [],
postKey: ''
},
mutations: {
// Get data from a firebase path & put in state object
getResources: function (state) {
var resourcesRef = db.ref('resources');
resourcesRef.on('value', snapshot => {
state.resources.push(snapshot.val());
})
},
getUsers: function (state) {
var usersRef = db.ref('users');
usersRef.on('value', snapshot => {
state.users = snapshot.val();
})
},
toggleSignIn: function (state) {
if (!auth.currentUser) {
console.log("Signing in...");
var provider = new firebase.auth.GoogleAuthProvider();
auth.signInWithPopup(provider).then( result => {
// This gives you a Google Access Token. You can use it to access the Google API.
var token = result.credential.accessToken;
// The signed-in user info.
var user = result.user;
// Set a user
var uid = user.uid;
db.ref('users/' + user.uid).set({
name: user.displayName,
email: user.email,
profilePicture : user.photoURL,
});
state.userInfo = user;
// ...
}).catch( error => {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
// The email of the user's account used.
var email = error.email;
// The firebase.auth.AuthCredential type that was used.
var credential = error.credential;
// ...
});
} else {
console.log('Signing out...');
auth.signOut();
}
}
}
})
export default store
主文件
import Vue from 'vue'
import App from './App'
import store from './store'
new Vue({
el: '#app',
store, // Inject store into all child components
template: '<App/>',
components: { App }
})
App.vue
<template>
<div id="app">
<button v-on:click="toggleSignIn">Click me</button>
</div>
</template>
<script>
import Hello from './components/Hello'
export default {
name: 'app',
components: {
Hello
},
created: function () {
this.$store.commit('getResources'); // Trigger state change
this.$store.commit('getUsers'); // Trigger state change
},
computed: {
state () {
return this.$store.state // Get Vuex state into my component
}
},
methods: {
toggleSignIn () {
this.$store.commit('toggleSignIn'); // Trigger state change
}
}
}
</script>
<style>
</style>
最佳答案
所有 AJAX 都应该进入操作而不是突变。所以这个过程将从调用你的 Action 开始
...将数据从 ajax 回调提交到一个突变
...负责更新 vuex 状态。
引用:http://vuex.vuejs.org/en/actions.html
下面是一个例子:
// vuex store
state: {
savedData: null
},
mutations: {
updateSavedData (state, data) {
state.savedData = data
}
},
actions: {
fetchData ({ commit }) {
this.$http({
url: 'some-endpoint',
method: 'GET'
}).then(function (response) {
commit('updateSavedData', response.data)
}, function () {
console.log('error')
})
}
}
然后,要调用您的ajax,您必须立即执行以下操作来调用该操作:
store.dispatch('fetchData')
在您的情况下,只需将
this.$http({...}).then(...)
替换为您的 firebase ajax 并在回调中调用您的操作。关于vuex - 使用Vuex进行异步调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40403657/