gpt4 book ai didi

javascript - Angular RoutereuseStrategy,如何仅从特定路由重用?

转载 作者:行者123 更新时间:2023-12-05 03:55:10 25 4
gpt4 key购买 nike

我的应用程序有 RouterReuseStrategy,如下所示

import {
RouteReuseStrategy,
ActivatedRouteSnapshot,
DetachedRouteHandle,
} from '@angular/router';


export class CustomRouteReuseStrategy implements RouteReuseStrategy {

private handlers: { [key: string]: DetachedRouteHandle } = {};

/**
* Determines if this route (and its subtree) should be detached to be reused later
*/
shouldDetach(route: ActivatedRouteSnapshot): boolean {

if (!route.routeConfig || route.routeConfig.loadChildren) {
return false;
}
/** Whether this route should be re used or not */
let shouldReuse = false;
if (route.routeConfig.data) {
route.routeConfig.data.reuse ? shouldReuse = true : shouldReuse = false;
}
//Check the from route and decide whether to reuse or not
if(route.routeConfig.path == 'page1') {
shouldReuse = false;
} else {
shouldReuse = true;
}
return shouldReuse;
}

/**
* Stores the detached route.
*/
store(route: ActivatedRouteSnapshot, handler: DetachedRouteHandle): void {
console.log('[router-reuse] storing handler');
if (handler) {
this.handlers[this.getUrl(route)] = handler;
}
}

/**
* Determines if this route (and its subtree) should be reattached
* @param route Stores the detached route.
*/
shouldAttach(route: ActivatedRouteSnapshot): boolean {
return !!this.handlers[this.getUrl(route)];
}

/**
* Retrieves the previously stored route
*/
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle {
if (!route.routeConfig || route.routeConfig.loadChildren) {
return null;
}

return this.handlers[this.getUrl(route)];
}

/**
* Determines if a route should be reused
*/
shouldReuseRoute(future: ActivatedRouteSnapshot, current: ActivatedRouteSnapshot): boolean {
/** We only want to reuse the route if the data of the route config contains a reuse true boolean */
let reUseUrl = false;

if (future.routeConfig) {
if (future.routeConfig.data) {
reUseUrl = future.routeConfig.data.reuse;
}
}

/**
* Default reuse strategy by angular assers based on the following condition
* @see https://github.com/angular/angular/blob/4.4.6/packages/router/src/route_reuse_strategy.ts#L67
*/
const defaultReuse = (future.routeConfig === current.routeConfig);

// If either of our reuseUrl and default Url are true, we want to reuse the route
//
return reUseUrl || defaultReuse;
}

/**
* Returns a url for the current route
*/
getUrl(route: ActivatedRouteSnapshot): string {
/** The url we are going to return */
let next = route;
// Since navigation is usually relative
// we go down to find out the child to be shown.
while (next.firstChild) {
next = next.firstChild;
}
let segments = '';
// Then build a unique key-path by going to the root.
while (next) {
segments += next.url.join('/');
next = next.parent;
}
return segments;
}
}

模块中的路由配置,

{ path: 'page1', component: Page1Component },
{ path: 'page2', component: Page2Component , data: {reuse: true}},
{ path: 'page3', component: Page3Component },

正如所见,page2 组件的重用设置为 true,我希望重用仅在我从 page3page2不是page1page2

我更改了 shouldDetach 方法来检查 from 路由并决定是否分离。但这似乎不起作用。我错过了什么吗?

最佳答案

在我的路由重用设置中,我有另一个名为 reuseRoutesFrom 的字段。在我的例子中,我有一个列表和一个详细信息,所以当从详细信息页面导航回我的列表时,我想重用该列表,因此对于列表设置,我将有如下内容:

{
path: '',
component: ListComponent,
data: {
shouldReuseRoute: true,
reuseRoutesFrom: ['Detail', 'Detail/:Id']
}
},

在我的路由重用策略服务中,我在 should attach 中是这样看的:

shouldAttach(route: ActivatedRouteSnapshot): boolean {

var wasRoutePreviouslyDetached = !!this.handlers[route.url.join('/') || route.parent.url.join('/')];
if (wasRoutePreviouslyDetached) {
var reuseRouteFromVerified = route.data.reuseRoutesFrom.indexOf(this.routeLeftFrom) > -1;

if (reuseRouteFromVerified) {

return true;
}
}
return false;
}

分离时,我缓存我离开的路由以及上面使用的路由:

    private routeLeftFrom: string;

constructor() {}

// Determines if this route (and its subtree) should be detached to be reused later.
shouldDetach(route: ActivatedRouteSnapshot): boolean {
// console.debug('CustomReuseStrategy:shouldDetach', route);
this.routeLeftFrom = route.routeConfig.path;
return route.data.shouldReuseRoute || false;
}

关于javascript - Angular RoutereuseStrategy,如何仅从特定路由重用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60395757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com