我只为Android操作系统开发应用程序,我有一个问题,“白雾”之间的路线查看(而页面加载)。我使用路由器在页面之间路由。有人能帮我解决这个问题吗?下面是一个简短的示例视频(如果我点击“返回”文本,页面加载时会出现白雾)。
https://slack-files.com/T0L97VCSY-F32FW73H6-6288f56311
路由在@NgModule中声明,定义类似于NativeScript教程,如下所示:
export const routes = [
{ path: "", redirectTo: "/login", pathMatch: "full", terminal: true },
{ path: "login", component: LoginComponent },
{ path: "list", component: ListComponent },
];发布于 2016-11-21 16:00:47
我在这里找到了这个问题的解决方案:https://github.com/NativeScript/nativescript-angular/issues/468
所以在实际的tns核心模块版本中是错误的。我希望在下一次更新这个模块将修复这一点。
https://stackoverflow.com/questions/40629997
复制相似问题