我有以下网址,
product/example/:example/example1/:example1?query1=:query1&query2=:query2
我想获取路径和查询参数中指定的值,我试过这个,但它只检索路径变量而不是查询参数
this.sub = this.route.params.subscribe(params => {
this.example= params['example'];
this.example1 = params['example1'];
this.query1=params['query1'];
this.query2=params['query2'];
});
有没有办法可以获得所有4个值?