EmberJS - Rotas curinga / globbing de roteador
As rotas curinga são usadas para combinar as rotas múltiplas. Ele captura todas as rotas que são úteis quando o usuário insere uma URL incorreta e exibe todas as rotas na URL.
Sintaxe
Router.map(function() {
this.route('catchall', {path: '/*wildcard'});
});
As rotas curinga começam com o símbolo de asterisco (*), conforme mostrado na sintaxe acima.
Exemplo
O exemplo a seguir especifica as rotas curinga com vários segmentos de URL. Abra o arquivo criado em app / templates / . Aqui, criamos o arquivo como dynamic-segment.hbs e dynamic-segment1.hbs com o código abaixo -
dynamic-segment.hbs
<h3>Key One</h3>
Name: {{model.name}}
{{outlet}}
dynamic-segment1.hbs
<h3>Key Two</h3>
Name: {{model.name}}
{{outlet}}
Abra o arquivo router.js para definir mapeamentos de 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;
Crie o arquivo application.hbs e adicione o seguinte código -
<h2 id = "title">Welcome to Ember</h2>
{{#link-to 'dynamic-segment1' '101' '102'}}Deep Link{{/link-to}}
<br>
{{outlet}}
Na pasta de rotas , defina o modelo para dynamic-segment.js e dynamic-segment1.js com o código abaixo -
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}` };
}
});
Resultado
Execute o servidor ember e você obterá a saída abaixo -
Ao clicar no link na saída, você verá a rota do URL como / dynamic-segment / 101 / dynamic-segment1 / 102 -