user632770
user632770

Reputation:

How to pull key name from array of objects in AngularFire

Can someone help me pull the unique object name from contents ($Id). I'm able to loop over $scope.data in my template with ng-repeat but I can't get the name of that array. Need this to build a URL reference.

In short, how do I get "2015-02-27T20:24:11-06:00"? I can pull out item.count, item.handle, item.img_url, but {{item.$id}} doesn't work.

obj.$asArray();

object of arrays

obj.$asObject();

enter image description here

Upvotes: 0

Views: 480

Answers (1)

rasmuslp
rasmuslp

Reputation: 11

If you fetch the data $asArray() and save it on $scope.data you should simply be able to get the $id as you describe.

<div ng-repeat="item in data">
  <p>id: {{item.$id}}</p>
</div>

However, I can't help but notice that your casing in $Id is wrong.

Upvotes: 1

Related Questions