I have no problem doing {{unbound title}} or
{{#each file}}
{{unbound filename}}
{{/each}}
on a model.
BUT, all belongsto object in ember is really problematic for me. None of ways below work
{{unbound location.address}}
and
{{with location}}
{{unbound address}}
{{/with}}
both of these two result in empty output
At the time your model is being processed, any
belongsTo
relationships are not resolved yet. Since you're not binding, it can't retroactively update once that data is available either. I found this workaround yesterday, helping my solve my (similar) issues withbelongsTo
: https://github.com/emberjs/data/issues/1405