我有像Firebase所建议的那样的数据结构。
{
links: {
link1: {
title: "Example",
href: "http://example.org",
submitted: "user1",
comments: {
comment1: true
comment2:true
}
}
}
comments:{
comment1:{
text: hi im comment1
}
comment2:{
text:hi im comment 2
}
}
}
这个Article告诉了如何查找这样结构化的数据。 但这与纯Firebase SDK有关。我们如何在AngularFire中进行查找?
将数据同步到firebase对我来说至关重要。我知道$firebaseArray()
会自动同步数据。但是当我需要同步评论时我遇到了麻烦?
以下是Controller
的代码 var ref = firebase.database().ref("links");
$scope.links = $firebaseArray(ref);
这是我的HTML
<div ng-repeat="link in links">
<p>{{link.title}}</p>
<p>{{link.href}}</p>
<p>{{link.comments}}</p> ////////// how I can get comment from here I have
/////only Ids of comment. how I can get link comment
</div>