-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Access object properties #136
Comments
The You have two options I would say:
|
Flattening is a bad idea imho, if you have a large set of nodes. Interestingly, i can't make the |
What are you concrete problems with the Inside the template you can access your node via Shortened Example:
|
Ah, that did the trick. I was missing the surrounding span, so all i got was an error. Thank you :) |
Yeah, you need one html element to let angular render the whole thing - otherwise it complains ;-) |
Hi,
the objects i use to generate the table contain sub objects e.g.
I try to access the property
bar
from this object:However, that doesn't work for some reason. It doesn't display anything. But if i do
it displays:
How can i get around that without changing the format of the JSON?
The text was updated successfully, but these errors were encountered: