我在aurelia路由器上启用了pushState,并设置了root。
config.options.pushState = true;
config.options.root = '/vNext';
我已经设置了一个基本的href:
<head>
<base href="/vNext/" />
在我的页面中,我嵌套了一个子路由器,其中包含从“”到列表
的重定向app.ts:
config.map([
{ route: '', redirect: 'child-router-1' }, ...
child-router-1.ts:
config.map([
{ route: '', redirect: 'list' }, ...
什么有用
什么行不通
e.g。当在 / vNext / child-router1 / 列表中单击指向 / vNext / child-router1 / 5000 / detail 的链接时,在连接的浏览器中无效,即使socket.io片段显示单击。
答案 0 :(得分:0)
看看这个合并的拉取请求 这增强了对浏览器同步的pushstate支持