标签: ember.js
我必须通过更改浏览器中的网址来限制用户重新路由页面。有没有办法用ember限制它?
答案 0 :(得分:1)
是。如果您不希望浏览器的URL与您的应用程序进行交互,则可以禁用位置API
App.Router.reopen({ location: 'none' });
请参阅http://emberjs.com/guides/routing/specifying-the-location-api/