Ember非cli应用程序,如何从url中删除#(hash)?

时间:2018-03-21 05:53:56

标签: ember.js

如何从ember应用程序(非CLI)中的URL中删除#(哈希)。 我正在使用ember v2.15。

1 个答案:

答案 0 :(得分:2)

查看location documentation

您可以指定所需的类型。

location上设置historyEmberRouter会从网址中删除哈希值,而是使用浏览器历史记录。要完全禁用它,请将location设置为none

const Router = EmberRouter.extend({
  location: 'none',
  rootURL: '/'
})