如果 URL 对应于特殊模式,如何重定向到 Angular 中的路由?
我的网址为:
- /example.com/client/page-1?
- param=data /example.com/client/page-2
- /example.com/client/page-3?newparam=data
我想在用户打开应用程序时将用户重定向到以下页面:
- /example.com/page-1?param=data
- /example.com/page-2
- / example.com/page-3?newparam=data
我怎样才能实现这个有角? (例如路线、守卫、canActivate 方法或其他)
I have the URLs:
- /example.com/client/page-1?param=data
- /example.com/client/page-2
- /example.com/client/page-3?newparam=data
I want to redirect user to the following pages while they open the app:
- /example.com/page-1?param=data
- /example.com/page-2
- /example.com/page-3?newparam=data
How can I implement this in Angular? (e.g routes, guards, canActivate method or smth else)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,如果您有分页,API 会处理该问题,并且当切换到另一个页面索引时,您只需将该值传递给这样的参数即可。
当使用查询参数进行导航时,您可以通过这样做来实现。
Normally, if you have pagination, the api takes care of that and when switching to another page index, you just need to pass the value to a parameter like this.
And when navigating with a query parameter, you can achieve it by doing this.