我找不到如何链接到我的Ember应用程序的根路径。
我尝试了{{#link-to 'index'}}Home{{/link-to}}
,但在我的控制台中,我得到了例外:Assertion failed: The attempt to link-to route 'index' failed (also tried 'index.index'). The router did not find 'index' in its possible routes: 'loading', 'error', 'start.loading', 'start.error'
当我尝试{{link-to 'application'}}
这是我的路由器:
App.Router.map(function() {
this.resource('start', { path: '/start' }, function() {
//.. sub routes ..
});
this.resource('intro', { path: '/' }, function() {
// ...
});
this.route('login')
});
答案 0 :(得分:28)
根据您使用的版本,它现在只支持index
,application
也适用于链接回根目录。
{{link-to 'Back to Home' 'application' }}
{{link-to 'Back to Home 2' 'index' }}