Firebase' child_added' DataSnapshot返回$ id作为名称

时间:2014-06-14 14:43:47

标签: angularjs firebase angularfire

我正在尝试遍历Firebase中的集合中的项目。具体而言,列表引用了保存实际数据的另一个集合。

网址如下所示: author / simplelogin:1 / posts

我在Angular中有以下代码,当加载每个条目时触发:

authorPosts.$on('child_added', function (post) {
  console.log(post.snapshot.name);
});

我有两个条目:

>> my-first-post: "my-first-post"
>> my-second-post: "my-second-post"

问题是child_added事件返回:

$id
my-first-post
my-second-post

$ id 意外,仅包含

有关我正在使用的信息:

  • v1.0.15 Firebase
  • v0.7.1 AngularFire
  • v1.5.0 Firebase简单登录
  • v1.2.17 Angular(也尝试过v.1.3.0-beta.11)

0 个答案:

没有答案