如何使用 vuexfire 从 firestore 数据库中获取数据?

how to get data from firestore database using vuexfire?

我正在使用以下数据模型编写一个聊天应用程序: 使用以下方法: store/index.js

 actions: {
bindMessages: firestoreAction(({ state, bindFirestoreRef }) => {
  // return the promise returned by `bindFirestoreRef`
  return bindFirestoreRef(
    'messages',
    db.collection('groupchats')
  );
}),
},

然后我从我的 vue 组件中访问消息 store.state,如下所示:

computed: {
Messages() {
  return this.$store.state.messages;
},
},

根据vuexfire docs。 我能够(被动地)获取整个集合的数据,但假设我知道文档 ID,我想要特定文档的 **messages 数组 **。我该怎么做?

以下应该可以解决问题:

state: {
    // ...
    doc: null
},

mutations: vuexfireMutations,

getters: {
   // ...
},

actions: {
    bindDoc: firestoreAction(({ bindFirestoreRef }) => {
        return bindFirestoreRef('doc', db.collection('groupchats').doc('MI3...'))
    })
}

您可以按如下方式使其动态化:

分量:

// ...
<script>
export default {
  created() {
    this.$store.dispatch('bindDoc', { id: '........' }); // Pass the desired docId, e.g. MI3...
  },
};
</script>
// ...

Vuex 商店:

state: {
    // ...
    doc: null
},

mutations: vuexfireMutations,

getters: {
  // ...
},
actions: {
    bindDoc: firestoreAction(({ bindFirestoreRef }, payload) => {
        return bindFirestoreRef('doc', db.collection('groupchats').doc(payload.id));
    }),
}