为什么铁路由器不能渲染旋转木马?

时间:2014-06-20 13:24:20

标签: meteor iron-router owl-carousel

当我像这样做时它完美地运作

<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: '/'
  });
});

2 个答案:

答案 0 :(得分:1)

我得出documentation you're reading is not in sync with the code base的结论。实际上,it looks like the feature is gone

在我自己对该主题的探索中,I have an alternate solution at that may work for you位于本文的底部。

答案 1 :(得分:0)

在template.rendered钩子中初始化你的轮播,例如我的模板名为main_slider。

Template.main_slider.rendered = function() {
    // init carousel here
};