如何制作vuefire show加载屏幕?

时间:2017-08-20 14:05:40

标签: firebase vue.js vuefire

作为标题 Vuefire可以自动从firebase数据库获取数据,但需要一些加载时间。 所以我想在获取数据之前显示一些css动画,是否可以在成功时观看任何事件

2 个答案:

答案 0 :(得分:2)

您可以通过多种方式完成此操作。 Vuefire开箱即用readyCallback,这是在获取数据(准备好)时调用的回调。

这是:

var vm = new Vue({
  el: '#demo',
  data: function() {
    return {
       loaded: false
    }
  }
  firebase: {
    // simple syntax, bind as an array by default
    anArray: db.ref('url/to/my/collection'),
    // can also bind to a query
    // anArray: db.ref('url/to/my/collection').limitToLast(25)
    // full syntax
    anObject: {
      source: db.ref('url/to/my/object'),
      // optionally bind as an object
      asObject: true,
      // optionally provide the cancelCallback
      cancelCallback: function () {},
      // this is called once the data has been retrieved from firebase
      readyCallback: function () {
         this.loaded = true // NOTE THIS LINE
      }
    }
  }
})

答案 1 :(得分:1)

另一个答案中的readyCallback方法对我不起作用。我遇到了一个错误document.onSnapshot is not a function

相反,我使用binding approach设置了加载完成后的标志。

<script>
    // ...

    export default {
        data() {
            return {
                data: [],
                loaded: false,
            }
        },
        mounted() {
            this.$bind('data', firebase.firestore().collection('someDocRef'))
                .then(() => this.loaded = true);
        },
    }
</script>

然后我的模板可以具有条件渲染的加载屏幕:

<template>
    <template v-if="!loaded">
        <p>Loading...</p>
    </template>

    <template v-if="loaded">
        <!-- Display data here -->
    </template>
</template>