如何链接到应用程序的根路径

时间:2014-02-04 13:34:28

标签: ember.js

我找不到如何链接到我的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')
});

1 个答案:

答案 0 :(得分:28)

根据您使用的版本,它现在只支持indexapplication也适用于链接回根目录。

{{link-to 'Back to Home' 'application' }}

{{link-to 'Back to Home 2' 'index' }}

http://emberjs.jsbin.com/OxIDiVU/188/edit