TEMPLATE NODES
-
Hello, I am trying to create my first template. I have a data set that I am trying to display on a web page. The data is coming through on msg.data. I've tried using ng-repeat and scripting to get this into my template but it doesn't display anything.
here's the snippet of my template:
<div layout="row" layout-align="start center" ng-repeat="obj in {{data}} track by $index">
<span>{{obj.value}}</span>
</div>I am seeing the object array when I am looking at the elements, however, ng-repeat doesn't seem to be working. Is there something that I am missing here?
I've also tried this:
<div layout="row" layout-align="start center" ng-repeat="obj in msg.data track by $index">
<span>{{obj.value}}</span>
</div>My data object is simple, array of objects like this:
object:{
date: "2312345123",
value: "23.12",
}I need help...I've got problems.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login