如果 URL 对应于特殊模式,如何重定向到 Angular 中的路由?

发布于 2025-01-14 05:58:54 字数 419 浏览 1 评论 0原文

我的网址为:

  • /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无语# 2025-01-21 05:58:54

通常,如果您有分页,API 会处理该问题,并且当切换到另一个页面索引时,您只需将该值传递给这样的参数即可。

/example.com?pageIndex=1

当使用查询参数进行导航时,您可以通过这样做来实现。

this.router.navigate(
['/example.com'],
{ queryParams: { order: 'popular' } }
);

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.

/example.com?pageIndex=1

And when navigating with a query parameter, you can achieve it by doing this.

this.router.navigate(
['/example.com'],
{ queryParams: { order: 'popular' } }
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文