使用 Angular 模板中的链接设置分页
Setting up Paging with links in Angular template
我尝试了以下解决方案:
{{页}}
如果我删除路由器中的 {{page}}link 它会起作用,否则会出错。
但我当然需要 link 中的页码,以便我可以定向到正确的页面。我怎样才能做到这一点?
像这样尝试:) 你可以像数组一样传递 routerLink 参数,其中第二个参数可以是可变的。
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights',page]">
{{page}}
</a>
试试这样,只需更改逗号位置即可:
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights/'{{page}}]">
{{page}}
</a>
我尝试了以下解决方案:
{{页}}
如果我删除路由器中的 {{page}}link 它会起作用,否则会出错。 但我当然需要 link 中的页码,以便我可以定向到正确的页面。我怎样才能做到这一点?
像这样尝试:) 你可以像数组一样传递 routerLink 参数,其中第二个参数可以是可变的。
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights',page]">
{{page}}
</a>
试试这样,只需更改逗号位置即可:
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights/'{{page}}]">
{{page}}
</a>