我有一些queryParams
的网址。而且我遇到了问题:在网页重新加载内部网址后出现斜线。为什么会这样?
http://localhost:8000/photos?user_id=1 http://localhost:8000/photos/?user_id=1
在路线中:
{ path: 'photos', component : PhotosComponent, canActivate: [AuthGuard] }
在锚标记中:
[routerLink]="['/photos']" [queryParams]="{user_id: _userId}"