它完美的作品時,我做它像這樣爲什麼鐵路路由器不能渲染輪播?
<body>
{{> carousel}}
</body>
<Template name="carousel">
....here the code of carousel...
</Template>
但是當我使用鐵路由器呈現模板;它不渲染旋轉木馬
<body>
{{rendreRouter}}
</body>
<Template name="carousel">
....here the code of carousel...
</Template>
Router.map(function() {
this.route('carousel',{
path: '/'
});
});
你的榜樣使用** {{rendreRouter}} **,我相信** {{renderRouter}} **應使用 –
但是當我使用它;沒有旋轉木馬的圖像呈現,我不知道爲什麼或如何修復它,因爲我是流星的新手 – abdou
創建基本的流星應用程序,它再現了這個問題,並將其推送到一些github存儲庫,發送給我的鏈接,我會看看 –