Buscar..
Enrutamiento con enrutador de hierro
Instalar el enrutador de hierro
Desde la terminal:
meteor add iron:router
Configuracion basica
Router.configure({
//Any template in your routes will render to the {{> yield}} you put inside your layout template
layoutTemplate: 'layout',
loadingTemplate: 'loading'
});
Render sin datos
//this is equal to home page
Router.route('/', function (){
this.render('home')
});
Router.route('/some-route', function () {
this.render('template-name');
});
Render con datos y parámetros.
Router.route('/items/:_id', function () {
this.render('itemPage', {
data: function() {
return Items.findOne({_id: this.params._id})
}
});
});
Renderizar a un rendimiento secundario.
Router.route('/one-route/route', function() {
//template 'oneTemplate' has {{> yield 'secondary'}} in HTML
this.render('oneTemplate');
//this yields to the secondary place
this.render('anotherTemplate', {
to: 'secondary'
});
//note that you can write a route for '/one-route'
//then another for '/one-route/route' which will function exactly like above.
});
Suscríbete y espera los datos antes de renderizar la plantilla.
Router.route('/waiting-first', {
waitOn: function() {
//subscribes to a publication
//shows loading template until subscription is ready
return Meteor.subscribe('somePublication')
},
action: function() {
//render like above examples
}
});
Suscríbase a varias publicaciones y espere datos antes de presentar la plantilla
Router.route('/waiting-first', {
waitOn: function() {
//subscribes to a publication
//shows loading template until subscription is ready
return [Meteor.subscribe('somePublication1'),Meteor.subscribe('somePublication2')];
},
action: function() {
//render like above examples
}
});
Guía para enrutador de hierro: http://iron-meteor.github.io/iron-router/
Con FlowRouter
FlowRouter es más modular en comparación con Iron Router.
Instalar FlowRouter
meteor add kadira:flow-router
Renderizando una plantilla
En particular, debe agregar manualmente un paquete de representación de diseño para vincularlo con su motor de representación:
- Blaze Layout para Blaze:
meteor add kadira:blaze-layout
- React Layout para React:
meteor add kadira:react-layout
Luego puedes renderizar a través de plantillas dinámicas (en el caso de Blaze):
<template name="mainLayout">
{{> Template.dynamic template=area}}
</template>
FlowRouter.route('/blog/:postId', {
action: function (params) {
BlazeLayout.render("mainLayout", {
area: "blog"
});
}
});
Renderizando una plantilla con parámetros y / o consulta.
Los parámetros se especifican en la ruta, como con el enrutador de hierro:
FlowRouter.route("/blog/:catId/:postId", {
name: "blogPostRoute",
action: function (params) {
//...
}
})
Pero los parámetros no se pasan como contexto de datos a la plantilla secundaria. En su lugar, la plantilla hijo debe leerlos:
// url: /blog/travel/france?showcomments=yes
var catId = FlowRouter.getParam("catId"); // returns "travel"
var postId = FlowRouter.getParam("postId"); // returns "france"
var color = FlowRouter.getQueryParam("showcomments"); // returns "yes"