What controls where Ember's Loading Route is displayed?
问题 I would have thought that the LoadingRoute would display its template in the {{outlet}} of the main AppView, but it doesn't seem like it does. What determines where it goes? Here's a JS Bin of my problem. The Loading message isn't showing up where I expect. 回答1: Suppose that you have this mapping: App.Router.map(function() { this.route("foo") }); When is transitioned to foo route. It template will be inserted in that was specified in the into property of render method. By example: App