当我这样制作时,它可以完美运行
<body>
{{> carousel}}
</body>
<Template name="carousel">
....here the code of carousel...
</Template>
但是当我使用 Iron-router 渲染模板时;它不会呈现轮播
<body>
{{rendreRouter}}
</body>
<Template name="carousel">
....here the code of carousel...
</Template>
Router.map(function () {
this.route('carousel',{
path: '/'
});
});