从firestore集合中读取太慢了

时间:2018-05-24 14:04:04

标签: reactjs firebase google-cloud-firestore

我正在使用带有React的Firebase.firestore。我在componentDidMount中使用了firebase方法,并且post的项加载速度太慢。

const list = []; 
firebase.firestore().collection("posts").get().then(function(querySnapshot){
        querySnapshot.forEach(function(doc) {
            list.push(doc.data().message);
        });
    });

当推动动作完成后,我用React改变React中的状态,但速度太慢。有什么想法吗?

0 个答案:

没有答案