I'm new to ember and I would like to know how I can display the values stored in an object controller. I setup a bin and I'm now able to make it work:
http://jsbin.com/xehufetijo/edit?html,js,output
Any help would be much appreciated.
Thanks!
I'm new to ember and I would like to know how I can display the values stored in an object controller. I setup a bin and I'm now able to make it work:
http://jsbin.com/xehufetijo/edit?html,js,output
Any help would be much appreciated.
Thanks!
Try adding model in from of your attributes. For instance you would write:
{{model.first}} and {{model.last}}. If the attributes is attached to a controller, you don't need to specify it explicitly
data-template-name="index" jsbin.com/gujapiqono/edit?html,js,output