0

我有三个角度模块(AppModule、ProductsModule 和 OrdersModule),配置如下。

const appRoutes: Routes = [
  { path: '', component: HomeComponent, pathMatch: 'full' },
  { path: 'products', loadChildren: () => import('./products/products.module').then(
          m => m.ProductsModule) },
  { path: 'orders', loadChildren: () => import('./orders/orders.module').then(
          m => m.OrdersModule) },
];

在这些模块的组件中,ActivatedRoute.snapshot.url 没有 url 的第一部分(即“产品”或“订单”)。如何访问完整的 URL?

4

0 回答 0