如何访问导航堆栈 NativeScript
How to access the navigation stack NativeScript
我正在尝试为我的 Nativescript-Angular 应用程序创建面包屑导航。我在导航文档中读到,使用 <page-router-outlet>
向前导航时,当前页面和视图保存在本机导航堆栈中。
我如何访问这个导航堆栈?这样我就可以导航回用户想要访问的特定页面并清理该组件前面的所有页面。
谢谢
您始终可以通过 Frame and BackStack 查询,甚至在 NativeScript Core 的情况下使用它们一次性关闭多个页面。
对于 NativeScript Angular,有一个打开的 feature request, but you could still use Frame / NSLocationStrategy 可以查找历史中的所有页面。
我正在尝试为我的 Nativescript-Angular 应用程序创建面包屑导航。我在导航文档中读到,使用 <page-router-outlet>
向前导航时,当前页面和视图保存在本机导航堆栈中。
我如何访问这个导航堆栈?这样我就可以导航回用户想要访问的特定页面并清理该组件前面的所有页面。
谢谢
您始终可以通过 Frame and BackStack 查询,甚至在 NativeScript Core 的情况下使用它们一次性关闭多个页面。
对于 NativeScript Angular,有一个打开的 feature request, but you could still use Frame / NSLocationStrategy 可以查找历史中的所有页面。