- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个产品文件夹,其中包含 products-home.component(parent) 和 products-list.component(child) 并命名为 outlet。
我收到 错误:无法匹配任何路线。 URL 段:使用延迟加载导航到
。products-list
时的“products”
这在急切加载时有效
app.module.ts
@NgModule({
imports: [ ...,ProductsModule ]
})
products.module.ts
@NgModule({
imports: [
RouterModule.forRoot([
{
path: "products",
component: ProductsHomeComponent,
children: [
{
path: "products-list",
component: ProductsComponent,
outlet: "content"
}
]
}
])
]
})
这在延迟加载时不起作用
app.module.ts
const LazyRoutes: Routes = [
{
path: 'products',
loadChildren: './products/products.module#ProductsModule'
}
];
@NgModule({
imports: [ RouterModule.forRoot(LazyRoutes) ]
})
products.module.ts
@NgModule({
imports: [
RouterModule.forChild([
{
path: "",
component: ProductsHomeComponent,
children: [
{
path: "products-list",
component: ProductsComponent,
outlet: "content"
}
]
}
])
]
})
最佳答案
2021 更新...从 V7 到 V12 测试
为了使用延迟加载模块的命名导出,您必须导航到定义路由器的组件内的模块页面。例如:
考虑一下:
lazyModule.component.ts
<div>
<a [routerLink]="[{outlets: {namedRouter: 'innerComponent'}}]">Open Link in Named Route</a><br>
<router-outlet></router-outlet>
<router-outlet name = 'namedRouter'></router-outlet>
</div>
单击 anchor 标记将在“namedRouter”导出中显示名为“innerComponent”的路由。
但是...出于某种原因,从任何其他嵌套组件更改“namedRouter”的路由(无论它是否在同一模块中)将不起作用 .在代码方面:
nestedComp.component.ts
<div>
<button [routerLink]="{outlets: {namedRouter: 'aValidRoute'}}">IT SHOULD WORK, BUT IT DOESN'T</button> <!--- This will fail to resolve the route if called within the conteXt of the lazy loaded module. --->
</div>
如果您想从其他组件动态更改路由,我建议您实现一个 Observable 元素(例如,在 lazyModule.component.ts 中),该元素监听抛给它的路由并调用路由器更改。请参见下面的示例:
一些服务.ts
private routeBS: BehaviorSubject = new BehaviorSubject(null);
routeObs = this.routeBS.asObservable();
changeNamedRouterRoute(route: string): void {
this.routeBS.next(route);
}
lazyModule.component.ts
<div>
<router-outlet></router-outlet>
<router-outlet name = 'namedRouter'></router-outlet>
</div>
export class LazyModuleComponent implements OnInit {
constructor(
private service: SomeServiceService,
private router: Router,
private route: ActivatedRoute
) {}
ngOnInit() {
this.service.routeObs.subscribe(res => {
this.router.navigate([{outlets: {namedRouter: res}}], {relativeTo: this.route.parent}).then(acc => {
// do something when the router gives you the nod
}).catch(err => {
console.log(err);
// do something when the router event fails
});
});
}
}
在其他应直接将路由设置为“namedRouter”的组件中,通过构造函数注入(inject)“someService”服务,然后调用该服务的 changeNamedRouterRoute() 函数,将所需路由指定为唯一参数。
希望这对某人有所帮助,我被困在这个问题上将近 6 个小时,但互联网并没有给我任何可靠的休息时间。 GitHub issues 由于不活动而未关闭而关闭,但我相信有些人可能会发现这非常有用。
关于带有命名 socket 的 Angular 延迟加载不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62274933/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!