提问人:Himanshu Kumar 提问时间:9/4/2023 最后编辑:eekinciHimanshu Kumar 更新时间:9/8/2023 访问量:35
如何使用 name router-outlet 时制作自定义 url?
How to make custom url while using name router-outlet?
问:
在这里我不想要这个()请帮帮我?sidebar:cart-page
我想在基于标签进行搜索时使内部购物车组件通用,并且也不想要(sidebar:cart-page
)
答:
0赞
Flo
9/8/2023
#1
这是不可能的。Angular 需要知道应该使用哪个。您可以采取的一种方法是使用 .然后,在主组件中只有 own,并且每个子组件也有一个 。router-outlet
child-routes
router-outlet
router-outlet
例
const routes: Routes = [
{
path: 'first-component',
component: FirstComponent, // this is the component with the <router-outlet> in the template
children: [
{
path: 'child-a', // child route path
component: ChildAComponent, // child route component that the router renders
},
{
path: 'child-b',
component: ChildBComponent, // another child route component that the router renders
},
],
},
];
孩子可以生孩子,两个孩子。因此,您的路线看起来不同,并且没有 .(sidebar:cart-page)
评论