这是我的代码。并且通过一些服务功能,在页面滚动上我将html附加到' ul'。附加html后,路由器链接无法正常工作,因为我正在更改' ul'的html。我希望路由器链接工作,即使在使用纯js代码或角度语法附加/更改html之后。严格的角度2/4。
<ul class="search-results" id="search-results" infinite-scroll [infiniteScrollDistance]="2" [infiniteScrollThrottle]="300" (scrolled)="onScrollDown()">
<li *ngFor="let customer of icustomers">
<div>
<h3><a [routerLink]="['/view-customer', customer._id]">{{customer.city}}</a></h3>
<p>{{customer.pop}}</p>
<p>{{customer.state}}</p>
</div>
</li>
</ul>