skipLocationChange:true不起作用;显示网址

时间:2019-06-30 06:40:32

标签: angular angular7-router

我对棱角还很陌生,不知道如何问这个问题。 当我使用路由器重定向到另一个组件skipLocationChange时遇到一个问题:true在浏览器中仍显示当前(称为)组件URl,

路由器的语法如下

this.myRouter.navigate(['test-component2',{skipLocationChange:true}])

,它在浏览器中返回http://localhost:4200/test-component2;skipLocationChange=true。 问题也报告为错误here。 有没有其他选择或当前问题的解决方案

1 个答案:

答案 0 :(得分:1)

在我看来是语法错误。试试:

this.myRouter.navigate(['test-component2'],{skipLocationChange:true});