2014-11-14 1 views

ответ

2
  • this.setLayout теперь this.layout().
  • this.lookupLayoutTemplate теперь Router.lookupLayoutTemplate

Также обратите внимание, что onBeforeAction теперь имеет три аргумента:

Router.onBeforeAction(function(req, res, next) { 

    next(); // or this.next(); 
      // still the same as pause().. 
      // you MUST call next so the route renders. 
}); 
+0

Любая идея, почему 'Router.lookupLayoutTemplate' возвращает' undefined' при посещении индекса? 'Router.map -> this.route ('/', {name: 'index', layoutTemplate: 'headered'})' – Loren

+0

Попробуйте 'Router.map -> this.route ('index', {path: '/ ', layoutTemplate:' headered '}) 'вместо этого. –

+0

Все еще не определено, как в 'onBeforeAction', так и после загрузки страницы. – Loren