Is there a way to do url in Angular?
http://www.example.com/?id=[1,2,3]&other=[4,5,6];
I created an object has object values.
let obj = {
id:[1,2,3],
other:[],
someValues:null
}
this.router.navigate([], {queryParams: {id: obj.id}, relativeTo: this.route});
After redirect url converted to

How can I solve?