I have a data structure like this:
post : {
content: 'content',
creator: {
name: 'Jones',
id: 1,
avatar: 'jones.png'
}
}
In HTML i want to display by interpolation for example the name of the creator.
I tried that:
{{ post.creator.name }}
But in app, at this place is an empty field.
namehas value but still, it is not appearing in HTML.