Ember Data only populating the “id” property
问题 Problem: The JSON is received from the server, but only the id property have a value. The GUI only displays the String "2 1", and the {{photoName}} is ignored. Manually calling MyApp.PhotoController.get('content').objectAt(0).get('photoName') returns undefined , whereas MyApp.PhotoController.get('content').objectAt(0).get('id') returns the correct ID. Any Sugggestions ? //My Model: MyApp.Photo = DS.Model.extend({ id: DS.attr('number'), photoName: DS.attr('string'), photoDescription: DS.attr(