EmberJS - Segmento dinamico del router
Un segmento dinamico inizia con un ":" nel metodo route () seguito da un identificatore. L'URL è definito con una proprietà id nel modello.
Sintassi
Router.map(function() {
this.route('linkpage', { path: '/linkpage/:identifier' });
});
Esempio
L'esempio seguente mostra come utilizzare i segmenti dinamici per la visualizzazione dei dati. Apri il file creato in app / templates / . Qui, abbiamo creato il file come blog-post.hbs con il codice seguente:
<h2>My Profile</h2>
Hello
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() {
this.route('blog-post', { path: '/blog-post/:username'});
});
export default Router;
Crea il file application.hbs e aggiungi il codice seguente:
{{#link-to 'blog-post' 'smith'}}View Profile{{/link-to}}
{{outlet}}
Per costruire l'URL, è necessario implementare l'hook serialize che passa il modello e restituisce l'oggetto con segmento dinamico come chiave.
import Ember from 'ember';
export default Ember.Route.extend ({
model: function(params, transition) {
return { username: params.username };
},
serialize: function(model) {
return { username: model.get('username') };
}
});
Produzione
Esegui il server ember e otterrai l'output seguente:
Quando fai clic sul collegamento nell'output, vedrai l'URL route come nestedroute / fruits e mostrerà il risultato di fruits.hbs -