ページのみ、つまり ionic2 の 1 つの画面のみを更新する方法はありますか。
私は試した :
window.location.reload();
と
location.reload();
しかし、それはアプリを再構築します..そのページ(特定の画面)のみを更新する方法はありますか。
また試しました:
<ion-input *ngIf="no_internet === 1" (click)="refresh($event)"></ion-input>
タイプスクリプトで:
refresh(refresher) {
console.log('Begin async operation', refresher);
setTimeout(() => {
console.log('Async operation has ended');
refresher.complete();
}, 2000);
}