Difference between this.get('model') and modelFor
问题 I am quite new to ember and don't really get the difference between two types of syntax. Where and in which situations should i use one or another. I.e. Which one is more suitable for usage in Routes and which one for Controllers. this.get('model') As opposed to this.modelFor('artists/show') 回答1: this.get('model') //controller call this.modelFor('someRoute') //route call In Ember, a routes setupController hook by default performs this one line of code: setupController: function(controller,