Ember路由:更改Ember.Location的路径名

时间:2013-07-31 10:52:43

标签: ember.js

我的余烬应用程序位于URL [server]/app。使用ember的默认哈希位置,网址将为[server]/app#/[path],而不是[server]/app/#/[path]。如何将Ember.Location.pathname从/app更改为/app/以使URL有效?

1 个答案:

答案 0 :(得分:0)

  

如何将/ app中的Ember.Location.pathname更改为/ app /以使URL有效?

您可以实现此目的的一种方法是将默认位置更改为history

App.Router.reopen({
  location: 'history'
});

有关详情,请参阅here

希望它有所帮助。