我使用铁路由器创建了一个流星应用程序,默认路由器看起来像这样
Router.route('/', {
this.render('Ft');
});
但是,当我加载http://localhost:3000/
时,我会不断获得no found
,因此未加载模板Ft
。
如何在我的应用程序中定义默认路由?。
其次,我有一个看起来像这样的控制器功能
home: function() {
this.render('Ft');
},
如何定义一个可以处理索引控制器功能的/
的控制器函数?。
答案 0 :(得分:0)
您需要传递一个对象:
Router.route('/',{
name: 'home',
template: 'Ft',
controller(){
/* your controller function. You don't need to render in that controller
if you define the template above */
}
});