如何防止 application.hbs 出现在它的路由中

How can I prevent the application.hbs from appearing in its routes

我有一个 Ember 应用程序,它有多个路由。但是,我不希望 application.hbs 中的内容出现在其路由中。我试过:

renderTemplate: function () {
  this.render("another_outlet");
}

但它在路线中显示来自 another_outlet.hbs 的内容和来自 application.hbs 的内容。

你不知道。 application.hbs 的唯一目的是有一个地方放置应该始终可见的东西。

如果您只想在应用程序的根目录 (/) 中添加某些内容,则应将其放入 index.hbs.