【发布时间】:2018-10-21 23:19:28
【问题描述】:
我的 html 中有这个:
(click)="openAlbum($event, album.post_id)"
在我的 ts 中:
openAlbum(event, post_id) {
this.router.navigate(['../my-albums/' + post_id]);
}
我现在站在这个网址:http://localhost:4200/profile/username/photos
我希望网址变成:http://localhost:4200/profile/username/my-albums
但是结果:http://localhost:4200/my-albums
【问题讨论】:
-
为什么不在路由器导航中提供完整的网址?喜欢
this.router.navigate(['profile/username/my-albums/' + post_id]);
标签: angular navigation router