刷新浏览器时如何重新加载 Ionic 3 中的当前页面?

How can i reload the current page in Ionic 3 when i refresh the browser?

我遇到了以下问题。我正在开发一个用 Ionic 3 编写的应用程序,我需要它在我刷新浏览器时呈现当前页面并且不会将我重定向到主页。

可能吗?

我试过这个代码:

this.navCtrl.setRoot (this.navCtrl.getActive (). component);

但这会删除 navController 的浏览历史。

原谅我的英语水平,还是很差

提前致谢。

要处理浏览器重新加载,您需要使用@IonicPage 注释您的页面。 Ionic Page 处理基于 URL 的特定页面的注册和显示。

Ionic Page docs