Sök…


Rutning med järnruter

Installera Iron Router

Från terminalen:

meteor add iron:router

Grundläggande konfiguration

Router.configure({
    //Any template in your routes will render to the {{> yield}} you put inside your layout template 
    layoutTemplate: 'layout',
    loadingTemplate: 'loading'
});

Framför utan data

//this is equal to home page
Router.route('/', function (){
    this.render('home')
});

Router.route('/some-route', function () {
    this.render('template-name');
});

Framför med data och parametrar

Router.route('/items/:_id', function () {
    this.render('itemPage', {
        data: function() {
            return Items.findOne({_id: this.params._id})
        }
    });
});

Återgå till ett sekundärt utbyte

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.
});

Prenumerera och vänta på data innan renderingsmallen

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
    }
});

Prenumerera på flera publikationer och vänta på data innan renderingsmallen

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
    }
});

Guide för Iron Router: http://iron-meteor.github.io/iron-router/

Med FlowRouter

FlowRouter är mer modulärt jämfört med Iron Router.

Installera FlowRouter

meteor add kadira:flow-router

Rendering av en mall

I synnerhet måste du manuellt lägga till ett layout-rendering-paket för att länka till din rendering-motor:

Sedan kan du återge genom dynamisk mallning (i fallet med Blaze):

<template name="mainLayout">
  {{> Template.dynamic template=area}}
</template>
FlowRouter.route('/blog/:postId', {
  action: function (params) {
    BlazeLayout.render("mainLayout", {
      area: "blog"
    });
  }
});

Återgivning av en mall med parametrar och / eller fråga

Parametrarna anges på rutten, som med Iron Router:

FlowRouter.route("/blog/:catId/:postId", {
  name: "blogPostRoute",
  action: function (params) {
    //...
  }
})

Men parametrarna skickas inte som datasammanhang till barnmallen. Istället måste barnmallen läsa dem:

// 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"


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow