如何在模板中引用将对象推送到firebase时提供的唯一ID。
我有这个:
-JGfp5eaDEk2_oB_Wnkc
category_id: xxxx
content: xxx
created: xxx
title: xxx
-JGfqwXgeHSksqcmeGEv
category_id: xxx
content: xxx
created: xxx
title: xxx
我通过使用:
得到了它var ref = firebaseRef('/types');
$scope.types = $firebase(ref);
现在我想在我的模板中创建一个类似的链接:
<a href="update/JGfqwXgeHSksqcmeGEv">Update</a>
答案 0 :(得分:4)
<ul><li ng-repeat="(key, value) in types">
<a href="update/{{key}}">Update</a>
</li></ul>
答案 1 :(得分:0)