当使用Angular的路由器时,有时会遇到这样的问题:“Angular无法重新连接具有不同子级数量的ActivatedRouteSnapshot。” 这通常是由于当前路由和新路由之间存在子级数量的不匹配引起的。
要解决这个问题,可以使用以下代码示例中的一种方法:
方法一:使用snapshot的data
属性来获取当前路由的子级数量,并在重新连接路由时进行比较。
import { ActivatedRouteSnapshot, DetachedRouteHandle, RouteReuseStrategy } from '@angular/router';
export class CustomRouteReuseStrategy implements RouteReuseStrategy {
private handlers: {[key: string]: DetachedRouteHandle} = {};
shouldDetach(route: ActivatedRouteSnapshot): boolean {
return false;
}
store(route: ActivatedRouteSnapshot, handle: DetachedRouteHandle): void {
this.handlers[route.routeConfig.path] = handle;
}
shouldAttach(route: ActivatedRouteSnapshot): boolean {
return !!route.routeConfig && !!this.handlers[route.routeConfig.path];
}
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle {
if (!route.routeConfig) {
return null;
}
return this.handlers[route.routeConfig.path];
}
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean {
if (future.data.numChildren !== curr.data.numChildren) {
return false;
}
return future.routeConfig === curr.routeConfig;
}
}
方法二:使用自定义的路由复用策略来处理不匹配的子级数量。
import { ActivatedRouteSnapshot, DetachedRouteHandle, RouteReuseStrategy } from '@angular/router';
export class CustomRouteReuseStrategy implements RouteReuseStrategy {
private handlers: {[key: string]: DetachedRouteHandle} = {};
shouldDetach(route: ActivatedRouteSnapshot): boolean {
return false;
}
store(route: ActivatedRouteSnapshot, handle: DetachedRouteHandle): void {
this.handlers[route.routeConfig.path] = handle;
}
shouldAttach(route: ActivatedRouteSnapshot): boolean {
return !!route.routeConfig && !!this.handlers[route.routeConfig.path];
}
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle {
if (!route.routeConfig) {
return null;
}
return this.handlers[route.routeConfig.path];
}
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean {
const futurePath = this.getFullPath(future);
const currPath = this.getFullPath(curr);
if (futurePath.split('/').length !== currPath.split('/').length) {
return false;
}
return future.routeConfig === curr.routeConfig;
}
private getFullPath(route: ActivatedRouteSnapshot): string {
let fullPath = '';
while (route) {
if (route.url.length) {
fullPath = route.url.join('/') + '/' + fullPath;
}
route = route.parent;
}
return fullPath;
}
}
在这两种方法中,我们都创建了一个自定义的RouteReuseStrategy
类,并实现了其中的方法。其中shouldReuseRoute
方法用于判断当前路由和即将访问的路由是否可以复用。如果子级数量不匹配,我们返回false
,否则返回true
。
然后,将这个自定义的路由复用策略添加到app.module.ts
文件中的providers
数组中,以替换默认的路由复用策略。
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouterModule, RouteReuseStrategy } from '@angular/router';
import { AppComponent } from './app.component';
import { CustomRouteReuseStrategy } from './custom-route-reuse-strategy';
@NgModule({
imports: [BrowserModule, RouterModule.forRoot([...])],
declarations: [AppComponent],
providers: [
{ provide: RouteReuseStrategy, useClass: CustomRouteReuseStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule { }
这样,Angular将使用我们自定义的路由复用策略来处理子级数量不匹配的情况,解决了“Angular无法重新连接具有不同子级数量的ActivatedRouteSnapshot。”的问题。
上一篇:Angular无法执行到组件路由
下一篇:Angular无关组件之间的通信