我尝试了以下解决方案:
{{页}}
如果我删除了routerlink中的{{page}},它将起作用,否则会出错。 但是我当然需要链接内的页码,以便我可以定向到正确的页面。我该如何实现?
答案 0 :(得分:1)
尝试这样:)您可以传递routerLink参数,例如array,其中第二个参数可以是可变的。
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights',page]">
{{page}}
</a>
答案 1 :(得分:0)
尝试通过更改逗号位置使其像这样:
<a style="display:inline-block" *ngFor="let page of pages" [routerLink]="['/searchflights/'{{page}}]">
{{page}}
</a>