Ricerca…
Routing con Iron Router
Installa Iron Router
Dal terminale:
meteor add iron:router
Configurazione di base
Router.configure({
//Any template in your routes will render to the {{> yield}} you put inside your layout template
layoutTemplate: 'layout',
loadingTemplate: 'loading'
});
Render senza dati
//this is equal to home page
Router.route('/', function (){
this.render('home')
});
Router.route('/some-route', function () {
this.render('template-name');
});
Render con dati e parametri
Router.route('/items/:_id', function () {
this.render('itemPage', {
data: function() {
return Items.findOne({_id: this.params._id})
}
});
});
Rendi a un rendimento secondario
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.
});
Iscriviti e attendi i dati prima di renderizzare il modello
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
}
});
Iscriviti a più pubblicazioni e attendi i dati prima di renderizzare il modello
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
}
});
Guida per Iron Router: http://iron-meteor.github.io/iron-router/
Con FlowRouter
FlowRouter è più modulare rispetto a Iron Router.
Installa FlowRouter
meteor add kadira:flow-router
Rendering di un modello
In particolare, devi aggiungere manualmente un pacchetto di rendering del layout per collegarti al tuo motore di rendering:
- Blaze Layout for Blaze:
meteor add kadira:blaze-layout
- React Layout for React:
meteor add kadira:react-layout
Quindi puoi eseguire il rendering tramite template dinamici (nel caso di Blaze):
<template name="mainLayout">
{{> Template.dynamic template=area}}
</template>
FlowRouter.route('/blog/:postId', {
action: function (params) {
BlazeLayout.render("mainLayout", {
area: "blog"
});
}
});
Rendering di un modello con parametri e / o query
I parametri sono specificati sul percorso, come con Iron Router:
FlowRouter.route("/blog/:catId/:postId", {
name: "blogPostRoute",
action: function (params) {
//...
}
})
Ma i parametri non vengono passati come contesto dati al modello figlio. Invece, il modello figlio deve leggerli:
// 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"