没有layoutTemplate的铁路由器映射

时间:2015-04-01 05:31:18

标签: javascript meteor iron-router

配置中有layoutTemplate的铁路由器。对于我的要求,我需要包含一些iframe元素而不渲染layoutTemplate。

//My configuration
Router.configure({
  layoutTemplate: 'layout'
});

//My routes
Router.map(function() {
  this.route('index', {path: '/'});
  this.route('Iframe', {path: '/iframe'}); //this particular path should render without layoutTemplate.
});

1 个答案:

答案 0 :(得分:0)

只需在路线图中添加布局名称。

Router.map(function() {
  this.route('Iframe', {path: '/iframe',layoutTemplate:'Iframe'});
});