VUEJS + Firestore如何输出数据?

b0zn9rqh  于 2023-04-21  发布在  Vue.js
关注(0)|答案(1)|浏览(113)

我创建了一篇文章并将其存储在Cloud Firestore中,现在我想将数据输出到名为Dashboard.vuevueJs文件中。
但是我不知道它是如何工作的。我自己尝试了一些想法,没有一个好的最终结果。
那么,如何输出这些数据呢?
文件:

Firebase => Cloud Firestore

在firebase中创建的post数据:


vueJs中创建post方法post.vue

createPost () {
       fb.postsCollection.add({
        postDetails: {
        createdOn: this.postDetails.createdOn,
        content: this.postDetails.content,
        userId: this.currentUser.uid,
        image: this.postDetails.image,
        comments: this.postDetails.comments,
        likes: this.postDetails.likes
      }
      }).then(ref => {
          this.post.content = ''
          this.$router.push('/dashboard')
      }).catch(err => {
          console.log(err)
      })
    }
relj7zay

relj7zay1#

请执行以下操作:
在数据中创建一个posts数组:

...
data() {
    return {
        posts: []
    }
},
....

然后创建一个方法来获取记录并将结果分配给posts数组:

methods:{
   getPosts: function() {

    fb.postsCollection.orderBy('createdOn', 'desc').onSnapshot(querySnapshot => {
        let postsArray = []

        querySnapshot.forEach(doc => {
            let post = doc.data()
            post.id = doc.id
            postsArray.push(post)
        })

        this.posts = postsArray;
    })

   }
 },
 .....

调用beforeMount()生命周期钩子中的方法:

beforeMount(){
    this.getPosts()
 },

然后将posts渲染到DOM。例如:

<div v-if="posts.length">
    <div v-for="post in posts">
        <h4>{{ post.createdOn }}</h4>
        <p>{{ post.content}}</p>
        <ul>
            <li>comments {{ post.comments }}</li>
        </ul>
    </div>
</div>
<div v-else>
    <p>There are currently no posts</p>
</div>

相关问题