How to get properties / values from snapshot.val() or snapshot.exportVal() in Firebase?

旧城冷巷雨未停 提交于 2019-12-08 19:21:23

The query returns a snapshot containing the matching children and it is the children that contain the properties in which you are interested.

You can enumerate the children using the snapshot's forEach method:

postsRef.orderByChild('author')
    .equalTo($scope.post.authorName)
    .once('value', function (snapshot) {

        snapshot.forEach(function (childSnapshot) {

            var value = childSnapshot.val();
            console.log("Title is : " + value.title);
        });
    });
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!