标签: ember.js
如何从ember应用程序(非CLI)中的URL中删除#(哈希)。 我正在使用ember v2.15。
答案 0 :(得分:2)
查看location documentation。
您可以指定所需的类型。
在location上设置history到EmberRouter会从网址中删除哈希值,而是使用浏览器历史记录。要完全禁用它,请将location设置为none。
location
history
EmberRouter
none
const Router = EmberRouter.extend({ location: 'none', rootURL: '/' })