import {Router} from "@angular/router";
constructor(private router: Router){}
this.router.navigate(['/'], {
queryParams: {
myQueryParam: 'test'
}
});
当我点击我的项目时,此路由器将我的网址更改为localhost:3000 /?myQueryParam = test
但是当我点击浏览器后退按钮时,只有网址会发生变化。