我有2个文件夹。 /HomePage
和/SettingsPage
。
/HomePage
包含:
/SettingsPage
包含:
我想从HompePage
home.html
(settings.ts
)
我用这个重新加载/刷新settings.html
:
this.navCtrl.setRoot(this.navCtrl.getActive().component);
答案 0 :(得分:1)
您可以使用Events:
import { Events } from 'ionic-angular';
// SettingsPage (publish an event when you need to reload the HomePage)
constructor(public events: Events) {}
shouldReload() {
events.publish('shouldReloadData');
}
// HomePage (listen for the event to reload the page)
constructor(public events: Events) {
events.subscribe('shouldReloadData', () => {
// Reload the page here
});
}