软件开发app ionic4 判断是否登录,然后跳转设置rootpage 由 奈何col - 27 2 月, 2019 805 1.ionic 4是用的单独的angular路由,和ionic3不同,不是通过app.component跳转的; 2.正确做法是通过,路由守卫判断,然后使用NavController.navigateRoot设置rootpage; ps:不能在app.component中判断,否则会每次先出现路由中的root,再跳转到你设置的root 路由守卫文档: https://angular.cn/guide/router#milestone-5-route-guards
具体怎么实现,有代码吗?
可以看angular官方教程