サーチ…


Iron Routerによるルーティング

Iron Routerをインストールする

ターミナルから:

meteor add iron:router

基本設定

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

データなしでレンダリングする

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

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

データとパラメータでレンダリングする

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

二次収率にレンダリングする

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

テンプレートをレンダリングする前にデータを購読して待機する

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

複数のパブリケーションを購読し、テンプレートをレンダリングする前にデータを待つ

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

Iron Routerのガイド: http : //iron-meteor.github.io/iron-router/

FlowRouterを使用する

FlowRouterはIron Routerと比較してモジュール化されています。

FlowRouterをインストールする

meteor add kadira:flow-router

テンプレートのレンダリング

特に、レンダリングエンジンにリンクするためにレイアウトレンダリングパッケージを手動で追加する必要があります。

  • BlazeのためのBlaze Layoutmeteor add kadira:blaze-layout
  • Reactのためのmeteor add kadira:react-layoutmeteor add kadira:react-layout

次に動的テンプレートをレンダリングすることができます(Blazeの場合):

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

パラメータおよび/またはクエリを含むテンプレートのレンダリング

パラメータは、Iron Routerの場合と同様に、ルート上で指定されます。

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

しかし、パラメータはデータコンテキストとして子テンプレートに渡されません。代わりに、子テンプレートはそれらを読み取る必要があります:

// 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow