所有脚本都加载在主体内,而不是头部 - Meteor.js IronRouter

All scripts are loaded inside the body, not head - Meteor.js IronRouter

出于某种原因,所有脚本都加载到正文中。

Jade:

head
  title xxx
body
  +layout

template(name='layout')
  XXX

-----
JS:

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

我已正确设置所有内容。使用流星 1.3

从 Meteor 1.3 开始,将脚本移至主体是设计使然。关于为什么它们目前位于主体的开头而不是结尾,回购协议中存在未决问题。请参阅 here and here 进行讨论。