2015-06-18 83 views
0

當我們從一個頁面導航到另一個頁面時,我們遇到了路由器的問題。用於頁面導航的路由器路徑

假設我們在template1中,我們需要去templete2.then然後我們做Router.go(/ templete2)right.I需要在URl templete1/templete2.Please幫助我。

回答

0

嘗試在router.js以下文件

Router.route('template1/template2',function() { 
    this.render('template2'); 
}); 
+0

還有一個問題是圖像template2.images不加載是否有公共文件夾中。 @syed zoheb –

+0

如果你的圖片在公共文件夾中。使用url作爲'background:url(/images/bg.png)'而不是'background:url(public/images/bg.png)'。當你訪問一個靜態文件時,你不需要在url中指定'public folder'。 – syed