EmberJS - Router Wildcard / Globbing Routes
I percorsi con caratteri jolly vengono utilizzati per abbinare più percorsi. Cattura tutti i percorsi utili quando l'utente inserisce un URL errato e visualizza tutti i percorsi nell'URL.
Sintassi
Router.map(function() {
this.route('catchall', {path: '/*wildcard'});
});
Le rotte con caratteri jolly iniziano con il simbolo asterisco (*) come mostrato nella sintassi precedente.
Esempio
L'esempio seguente specifica le route con caratteri jolly con più segmenti di URL. Apri il file creato in app / templates / . Qui, abbiamo creato il file come dynamic-segment.hbs e dynamic-segment1.hbs con il codice seguente:
dynamic-segment.hbs
<h3>Key One</h3>
Name: {{model.name}}
{{outlet}}
dynamic-segment1.hbs
<h3>Key Two</h3>
Name: {{model.name}}
{{outlet}}
Apri il file router.js per definire i mapping degli URL -
import Ember from 'ember';
//Access to Ember.js library as variable Ember
import config from './config/environment';
//It provides access to app's configuration data as variable config
//The const declares read only variable
const Router = Ember.Router.extend ({
location: config.locationType,
rootURL: config.rootURL
});
//Defines URL mappings that takes parameter as an object to create the routes
Router.map(function() {
//definig the routes
this.route('dynamic-segment', { path: '/dynamic-segment/:myId',
resetNamespace: true }, function() {
this.route('dynamic-segment1', { path: '/dynamic-segment1/:myId1',
resetNamespace: true }, function() {
this.route('item', { path: '/item/:itemId' });
});
});
});
export default Router;
Crea il file application.hbs e aggiungi il codice seguente:
<h2 id = "title">Welcome to Ember</h2>
{{#link-to 'dynamic-segment1' '101' '102'}}Deep Link{{/link-to}}
<br>
{{outlet}}
Nella cartella route , definire il modello per dynamic-segment.js e dynamic-segment1.js con il codice seguente:
dynamic-segment.hbs
import Ember from 'ember';
export default Ember.Route.extend ({
//model() method is called with the params from the URL
model(params) {
return { id: params.myId, name: `Id ${params.myId}` };
}
});
dynamic-segment1.hbs
import Ember from 'ember';
export default Ember.Route.extend ({
model(params) {
return { id: params.myId1, name: `Id ${params.myId1}` };
}
});
Produzione
Esegui il server ember e otterrai l'output seguente:
Quando fai clic sul link nell'output, vedrai il percorso dell'URL come / dynamic-segment / 101 / dynamic-segment1 / 102 -