Надеюсь, это кому-нибудь поможет, попробуйте что-то вроде этого:
// import location
import {
Location
} from '@angular/common';
updateUrl() {
// or pass teamId&userId into func
const queryParams = {
teamId: this.teamId,
userId: this.userId
};
const urlTree = this.router.createUrlTree([], {
queryParams: queryParams,
relativeTo: this.activeRoute,
skipLocationChange: true
});
this.location.replaceState(urlTree.toString());
}