我在Ionic 4上实现了Angular Algolia Instant Search,并希望将离子更新器用于新的项目列表。是否可以更新某个div元素?例如,再次更新public class MainWindowViewModel
{
ICommand WindowClosingCommand => new RelayCommand(arg => this.WindowClosing());
private void WindowClosing()
{
// do what you want.
}
}
?
我已经尝试过ng-template
,但是我不想重新加载整个页面。
这是在我的HTML上:
location.reload()
在我的电话上:
<ais-hits>
<ng-template let-hits="hits">
<ion-refresher slot="fixed" (ionRefresh)="doRefresh($event)">
<ion-refresher-content
pullingIcon="arrow-dropdown"
pullingText="Pull to refresh"
refreshingSpinner="circles"
refreshingText="Refreshing..."
>
</ion-refresher-content>
</ion-refresher>
<div *ngFor="let item of hits">
<ion-card (click)="displayItem(item)">
<ion-item>
<ion-label>{{ item.name}}</ion-label>
</ion-item>
</ion-card>
</div>
</ng-template>
</ais-hits>
在“刷新”上,我想更新内容列表。但这不会刷新内容。