हे एंडर्स, महान सवाल!
मुझे आपके समान लगभग उपयोग का मामला मिल गया है, और वही काम करना चाहता था! उपयोगकर्ता खोज> परिणाम प्राप्त करें> उपयोगकर्ता परिणाम के लिए नेविगेट करता है> उपयोगकर्ता वापस नेविगेट करता है> BOOM परिणामों में तेजी से धधकते हैं , लेकिन आप उस विशिष्ट परिणाम को संग्रहीत नहीं करना चाहते हैं जिसे उपयोगकर्ता ने नेविगेट किया हो।
tl; डॉ
आप एक वर्ग है कि लागू करता है RouteReuseStrategy
और में अपनी रणनीति प्रदान करने की आवश्यकता है ngModule
। यदि आप रूट संग्रहीत होने पर संशोधित करना चाहते हैं, तो shouldDetach
फ़ंक्शन को संशोधित करें । जब यह वापस आता है true
, तो कोणीय मार्ग को संग्रहीत करता है। यदि आप रूट संलग्न होने पर संशोधित करना चाहते हैं, तो shouldAttach
फ़ंक्शन को संशोधित करें । जब shouldAttach
सही हो जाता है, तो कोणीय अनुरोधित मार्ग के स्थान पर संग्रहीत मार्ग का उपयोग करेगा। यहाँ आप के साथ खेलने के लिए एक प्लंकर है ।
RouteReuseStrategy के बारे में
इस प्रश्न को पूछने से, आप पहले से ही समझ जाते हैं कि RouteReuseStrategy आपको एक घटक को नष्ट करने के लिए कोणीय को बताने की अनुमति नहीं देता है , लेकिन वास्तव में इसे बाद की तारीख में फिर से प्रस्तुत करने के लिए सहेजना है। यह अच्छा है क्योंकि यह अनुमति देता है:
- सर्वर कॉल में कमी
- वृद्धि की गति
- और घटक रेंडर करता है, डिफ़ॉल्ट रूप से, उसी स्थिति में इसे छोड़ दिया गया था
यह अंतिम महत्वपूर्ण है यदि आप चाहें, तो एक पृष्ठ को अस्थायी रूप से छोड़ दें, भले ही उपयोगकर्ता ने इसमें बहुत सारे पाठ दर्ज किए हों । रूपों की अत्यधिक मात्रा के कारण एंटरप्राइज एप्लिकेशन को यह सुविधा पसंद आएगी !
यही मैं समस्या को हल करने के लिए आया हूं। जैसा कि आपने कहा, आपको RouteReuseStrategy
3.4.1 और उच्चतर संस्करणों में @ कोणीय / राउटर द्वारा ऑफ़र किए गए का उपयोग करने की आवश्यकता है ।
करने के लिए
पहले सुनिश्चित करें कि आपकी परियोजना में @ कोणीय / राउटर संस्करण 3.4.1 या उच्चतर है।
इसके बाद , एक फ़ाइल बनाएं जो आपकी कक्षा को लागू करेगीRouteReuseStrategy
। मैंने उसे बुलाया reuse-strategy.ts
और उसे /app
सुरक्षित रखने के लिए फ़ोल्डर में रख दिया। अभी के लिए, इस वर्ग को इस तरह दिखना चाहिए:
import { RouteReuseStrategy } from '@angular/router';
export class CustomReuseStrategy implements RouteReuseStrategy {
}
(अपनी टाइपस्क्रिप्ट त्रुटियों के बारे में चिंता न करें, हम सब कुछ हल करने वाले हैं)
अपने वर्ग को कक्षा प्रदान करके जमीनी कार्य को पूरा करें app.module
। ध्यान दें कि आपने अभी तक नहीं लिखा है CustomReuseStrategy
, लेकिन import
इसे आगे बढ़ना चाहिए और यह reuse-strategy.ts
सभी समान है। भीimport { RouteReuseStrategy } from '@angular/router';
@NgModule({
[...],
providers: [
{provide: RouteReuseStrategy, useClass: CustomReuseStrategy}
]
)}
export class AppModule {
}
अंतिम टुकड़ा वह वर्ग लिख रहा है जो नियंत्रित करेगा कि मार्गों को अलग किया जाए, संग्रहीत किया जाए, पुनर्प्राप्त किया जाए और फिर से जोड़ा जाए। इससे पहले कि हम पुरानी कॉपी / पेस्ट करें , मैं यहाँ यांत्रिकी की एक छोटी व्याख्या करूँगा, जैसा कि मैं उन्हें समझता हूँ। नीचे बताए गए तरीकों के लिए कोड का संदर्भ दें, और निश्चित रूप से, बहुत सारे दस्तावेज हैं कोड में ।
- जब आप नेविगेट करते हैं,
shouldReuseRoute
आग। यह मेरे लिए थोड़ा अजीब है, लेकिन अगर यह वापस लौटता है true
, तो यह वास्तव में उस मार्ग का पुन: उपयोग करता है जो आप वर्तमान में कर रहे हैं और अन्य विधियों में से कोई भी निकाल नहीं है। यदि उपयोगकर्ता नेविगेट कर रहा है तो मैं बस गलत वापस करता हूं।
- अगर
shouldReuseRoute
लौटता है false
, shouldDetach
आग। shouldDetach
निर्धारित करता है कि आप मार्ग को संग्रहीत करना चाहते हैं या नहीं, और एक boolean
संकेत जितना लौटाता है । यह वह जगह है जहां आपको पथों को संग्रहीत करने / न करने का निर्णय लेना चाहिए , जो मैं उन रास्तों की एक सरणी की जांच करके करूंगा, जिन्हें आप संग्रहीत करना चाहते हैंroute.routeConfig.path
, और यदि path
सरणी में मौजूद नहीं है, तो वापस लौटना होगा ।
- यदि
shouldDetach
रिटर्न true
, store
निकाल दिया जाता है, जो आपके लिए मार्ग के बारे में जो भी जानकारी आप चाहते हैं उसे संग्रहीत करने का एक अवसर है। आप जो कुछ भी करते हैं, आपको उसे संग्रहीत करने की आवश्यकता होगी, DetachedRouteHandle
क्योंकि बाद में आपके संग्रहीत घटक की पहचान करने के लिए कोणीय का उपयोग करता है। नीचे, मैं दोनों को संग्रहीत करता हूंDetachedRouteHandle
और ActivatedRouteSnapshot
मेरी कक्षा के लिए एक चर स्थानीय में।
इसलिए, हमने स्टोरेज के लिए लॉजिक देखा है, लेकिन इसमें नेविगेट करने के बारे में क्या एक कंपोनेंट पर ? एंगुलर आपके नेविगेशन को इंटरसेप्ट करने और स्टोर किए गए को अपनी जगह पर रखने का फैसला कैसे करता है?
- फिर से,
shouldReuseRoute
वापस आ गया है false
,shouldAttach
चलाता है, जो यह पता लगाने का मौका है कि आप स्मृति में घटक को फिर से बनाना या उपयोग करना चाहते हैं या नहीं। यदि आप एक संग्रहीत घटक का पुन: उपयोग करना चाहते हैं, तो वापस लौटें true
और आप अपने रास्ते पर अच्छी तरह से आ जाएँ!
- अब कोणीय के लिए कहेगा, "जो घटक आप हमें उपयोग करना चाहते हैं?", तो आप उस घटक के वापस लौट कर यह संकेत मिलेगा जो
DetachedRouteHandle
से retrieve
।
आप की जरूरत है कि सभी तर्क बहुत सुंदर है! reuse-strategy.ts
नीचे दिए गए कोड में , मैंने आपको एक निफ्टी फ़ंक्शन भी छोड़ा है जो दो वस्तुओं की तुलना करेगा। मैं इसका उपयोग भविष्य के मार्ग की तुलना करने route.params
और route.queryParams
संग्रहीत के साथ करने के लिए करता हूं । यदि वे सभी मेल खाते हैं, तो मैं एक नया उत्पादन करने के बजाय संग्रहीत घटक का उपयोग करना चाहता हूं। लेकिन आप इसे कैसे करते हैं आपके ऊपर है!
उपयोग किए जाने वाले strategy.ts
/**
* reuse-strategy.ts
* by corbfon 1/6/17
*/
import { ActivatedRouteSnapshot, RouteReuseStrategy, DetachedRouteHandle } from '@angular/router';
/** Interface for object which can store both:
* An ActivatedRouteSnapshot, which is useful for determining whether or not you should attach a route (see this.shouldAttach)
* A DetachedRouteHandle, which is offered up by this.retrieve, in the case that you do want to attach the stored route
*/
interface RouteStorageObject {
snapshot: ActivatedRouteSnapshot;
handle: DetachedRouteHandle;
}
export class CustomReuseStrategy implements RouteReuseStrategy {
/**
* Object which will store RouteStorageObjects indexed by keys
* The keys will all be a path (as in route.routeConfig.path)
* This allows us to see if we've got a route stored for the requested path
*/
storedRoutes: { [key: string]: RouteStorageObject } = {};
/**
* Decides when the route should be stored
* If the route should be stored, I believe the boolean is indicating to a controller whether or not to fire this.store
* _When_ it is called though does not particularly matter, just know that this determines whether or not we store the route
* An idea of what to do here: check the route.routeConfig.path to see if it is a path you would like to store
* @param route This is, at least as I understand it, the route that the user is currently on, and we would like to know if we want to store it
* @returns boolean indicating that we want to (true) or do not want to (false) store that route
*/
shouldDetach(route: ActivatedRouteSnapshot): boolean {
let detach: boolean = true;
console.log("detaching", route, "return: ", detach);
return detach;
}
/**
* Constructs object of type `RouteStorageObject` to store, and then stores it for later attachment
* @param route This is stored for later comparison to requested routes, see `this.shouldAttach`
* @param handle Later to be retrieved by this.retrieve, and offered up to whatever controller is using this class
*/
store(route: ActivatedRouteSnapshot, handle: DetachedRouteHandle): void {
let storedRoute: RouteStorageObject = {
snapshot: route,
handle: handle
};
console.log( "store:", storedRoute, "into: ", this.storedRoutes );
// routes are stored by path - the key is the path name, and the handle is stored under it so that you can only ever have one object stored for a single path
this.storedRoutes[route.routeConfig.path] = storedRoute;
}
/**
* Determines whether or not there is a stored route and, if there is, whether or not it should be rendered in place of requested route
* @param route The route the user requested
* @returns boolean indicating whether or not to render the stored route
*/
shouldAttach(route: ActivatedRouteSnapshot): boolean {
// this will be true if the route has been stored before
let canAttach: boolean = !!route.routeConfig && !!this.storedRoutes[route.routeConfig.path];
// this decides whether the route already stored should be rendered in place of the requested route, and is the return value
// at this point we already know that the paths match because the storedResults key is the route.routeConfig.path
// so, if the route.params and route.queryParams also match, then we should reuse the component
if (canAttach) {
let willAttach: boolean = true;
console.log("param comparison:");
console.log(this.compareObjects(route.params, this.storedRoutes[route.routeConfig.path].snapshot.params));
console.log("query param comparison");
console.log(this.compareObjects(route.queryParams, this.storedRoutes[route.routeConfig.path].snapshot.queryParams));
let paramsMatch: boolean = this.compareObjects(route.params, this.storedRoutes[route.routeConfig.path].snapshot.params);
let queryParamsMatch: boolean = this.compareObjects(route.queryParams, this.storedRoutes[route.routeConfig.path].snapshot.queryParams);
console.log("deciding to attach...", route, "does it match?", this.storedRoutes[route.routeConfig.path].snapshot, "return: ", paramsMatch && queryParamsMatch);
return paramsMatch && queryParamsMatch;
} else {
return false;
}
}
/**
* Finds the locally stored instance of the requested route, if it exists, and returns it
* @param route New route the user has requested
* @returns DetachedRouteHandle object which can be used to render the component
*/
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle {
// return null if the path does not have a routerConfig OR if there is no stored route for that routerConfig
if (!route.routeConfig || !this.storedRoutes[route.routeConfig.path]) return null;
console.log("retrieving", "return: ", this.storedRoutes[route.routeConfig.path]);
/** returns handle when the route.routeConfig.path is already stored */
return this.storedRoutes[route.routeConfig.path].handle;
}
/**
* Determines whether or not the current route should be reused
* @param future The route the user is going to, as triggered by the router
* @param curr The route the user is currently on
* @returns boolean basically indicating true if the user intends to leave the current route
*/
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean {
console.log("deciding to reuse", "future", future.routeConfig, "current", curr.routeConfig, "return: ", future.routeConfig === curr.routeConfig);
return future.routeConfig === curr.routeConfig;
}
/**
* This nasty bugger finds out whether the objects are _traditionally_ equal to each other, like you might assume someone else would have put this function in vanilla JS already
* One thing to note is that it uses coercive comparison (==) on properties which both objects have, not strict comparison (===)
* Another important note is that the method only tells you if `compare` has all equal parameters to `base`, not the other way around
* @param base The base object which you would like to compare another object to
* @param compare The object to compare to base
* @returns boolean indicating whether or not the objects have all the same properties and those properties are ==
*/
private compareObjects(base: any, compare: any): boolean {
// loop through all properties in base object
for (let baseProperty in base) {
// determine if comparrison object has that property, if not: return false
if (compare.hasOwnProperty(baseProperty)) {
switch(typeof base[baseProperty]) {
// if one is object and other is not: return false
// if they are both objects, recursively call this comparison function
case 'object':
if ( typeof compare[baseProperty] !== 'object' || !this.compareObjects(base[baseProperty], compare[baseProperty]) ) { return false; } break;
// if one is function and other is not: return false
// if both are functions, compare function.toString() results
case 'function':
if ( typeof compare[baseProperty] !== 'function' || base[baseProperty].toString() !== compare[baseProperty].toString() ) { return false; } break;
// otherwise, see if they are equal using coercive comparison
default:
if ( base[baseProperty] != compare[baseProperty] ) { return false; }
}
} else {
return false;
}
}
// returns true only after false HAS NOT BEEN returned through all loops
return true;
}
}
व्यवहार
यह कार्यान्वयन प्रत्येक अद्वितीय मार्ग को संग्रहीत करता है जो उपयोगकर्ता राउटर पर ठीक एक बार आता है। यह साइट पर उपयोगकर्ता के पूरे सत्र में मेमोरी में संग्रहीत घटकों को जोड़ना जारी रखेगा। यदि आप अपने द्वारा संग्रहीत मार्गों को सीमित करना चाहते हैं, तो ऐसा करने का स्थान shouldDetach
विधि है। यह नियंत्रित करता है कि आप किन मार्गों को बचाते हैं।
उदाहरण
मान लें कि आपका उपयोगकर्ता मुखपृष्ठ से कुछ खोजता है, जो उन्हें उस मार्ग पर ले जाता है search/:term
, जो दिखाई दे सकता है www.yourwebsite.com/search/thingsearchedfor
। खोज पृष्ठ में खोज परिणामों का एक समूह होता है। यदि आप उस पर वापस आना चाहते हैं, तो आप इस मार्ग को संग्रहीत करना चाहेंगे! अब वे एक खोज परिणाम पर क्लिक करते हैं और नेविगेट करने के लिए मिलते हैं view/:resultId
, जिसे आप स्टोर नहीं करना चाहते हैं, यह देखते हुए कि वे शायद केवल एक बार ही होंगे। जगह में उपरोक्त कार्यान्वयन के साथ, मैं बस shouldDetach
विधि बदलूंगा! यहाँ यह है कि यह कैसा दिख सकता है:
सबसे पहले हम उन रास्तों की एक सरणी बनाते हैं जिन्हें हम स्टोर करना चाहते हैं।
private acceptedRoutes: string[] = ["search/:term"];
अब, shouldDetach
हम route.routeConfig.path
अपने ऐरे के खिलाफ जाँच कर सकते हैं ।
shouldDetach(route: ActivatedRouteSnapshot): boolean {
// check to see if the route's path is in our acceptedRoutes array
if (this.acceptedRoutes.indexOf(route.routeConfig.path) > -1) {
console.log("detaching", route);
return true;
} else {
return false; // will be "view/:resultId" when user navigates to result
}
}
क्योंकि कोणीय केवल एक मार्ग का एक उदाहरण संग्रहीत करेगा , यह भंडारण हल्का होगा, और हम केवल search/:term
अन्य सभी पर स्थित घटक का भंडारण करेंगे !
अतिरिक्त लिंक
हालाँकि अभी तक वहाँ बहुत सारे दस्तावेज नहीं हैं, यहाँ कुछ लिंक मौजूद हैं जो मौजूद हैं:
कोणीय डॉक्स: https://angular.io/docs/ts/latest/api/router/index/RouteReuseStrategy-class.html
इंट्रो आलेख: https://www.softwarearchitekt.at/post/2016/12/02/sticky-routes-in-angular-2-3-with-routereusestrategy.aspx
की nativescript-कोणीय के डिफ़ॉल्ट कार्यान्वयन RouteReuseStrategy : https://github.com/NativeScript/nativescript-angular/blob/cb4fd3a/nativescript-angular/router/ns-route-reuse-strategy.ts