我知道我可以为routerLink传递一个参数,例如

/user/:id

通过编写

[routerLink]="['/user', user.id]"

但是像这样的路线呢:

/user/:id/details

有没有办法设置这个参数,或者我应该考虑一个不同的URL方案?


当前回答

constructor(private activatedRoute: ActivatedRoute) {

this.activatedRoute.queryParams.subscribe(params => {
  console.log(params['type'])
  });  }

这对我很管用!

其他回答

非常简单

<a routerLink="/user/{{id}}/details"></a>

您可以使用动态值来生成链接。对于动态链接,传递一个路径段数组,后面跟着每个段的参数。 例如,['/team', teamId, 'user', userName, {details: true}]生成一个指向/team/11/user/bob的链接;details=true。

有多种方法可以实现这一点。

通过[routerLink]指令 Router类的navigate(Array)方法 navigateByUrl(string)方法,它接受字符串并返回承诺

routerLink属性要求你将routingModule导入到特性模块中,以防你延迟加载了特性模块,或者如果app-routing-module没有自动添加到AppModule imports数组中,则直接导入。

RouterLink

<a [routerLink]="['/user', user.id]">John Doe</a>
<a routerLink="urlString">John Doe</a> // urlString is computed in your component

导航

// Inject Router into your component
// Inject ActivatedRoute into your component. This will allow the route to be done related to the current url
this._router.navigate(['user',user.id], {relativeTo: this._activatedRoute})

NavigateByUrl

this._router.navigateByUrl(urlString).then((bool) => {}).catch()

app-routing.module.ts

const routes: Routes = [
  { path: 'products', component: ProductsComponent },
  { path: 'product/:id', component: ProductDetailsComponent },
  { path: '', redirectTo: '/products', pathMatch: 'full' },
];

在控制器中,你可以这样导航,

this.router.navigate(['/products', productId]);

它将使您进入如下路径:http://localhost:4200/products/product-id

Ref

constructor(private activatedRoute: ActivatedRoute) {}

在你要用的箱子里

`this.activatedRoute.parmas.subscribe(params => { console.log(params['type']) }); }`

用params代替queryparamas从url -中获取参数