我第一次使用铁路由器包。这是我的示例代码:
Router.configure({
layoutTemplate: 'layout'
});
Router.map(funtion(){
this.route('home', { path: '/'});
});
当我运行这个应用程序时。它给出了一个错误:
=> Errors prevented startup:
While building the application:
lib/router.js:5:22: Unexpected token {
=> Your application has errors. Waiting for file change.
=> Modified -- restarting.
=> Errors prevented startup:
我不确定这个简单的代码有什么问题。
答案 0 :(得分:2)
Router.map(funtion(){
this.route('home', { path: '/'});
});
功能拼写不正确。