我对棱角还很陌生,不知道如何问这个问题。 当我使用路由器重定向到另一个组件skipLocationChange时遇到一个问题:true在浏览器中仍显示当前(称为)组件URl,
路由器的语法如下
this.myRouter.navigate(['test-component2',{skipLocationChange:true}])
,它在浏览器中返回http://localhost:4200/test-component2;skipLocationChange=true
。
问题也报告为错误here。
有没有其他选择或当前问题的解决方案
答案 0 :(得分:1)
在我看来是语法错误。试试:
this.myRouter.navigate(['test-component2'],{skipLocationChange:true});