2014-07-06 1 views
-1

철제 라우터 패키지를 처음 사용하고 있습니다. 여기에 내 예제 코드 :철제 라우터 패키지의 오류

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: 

이 간단한 코드에는 무엇이 잘못된 것인지 잘 모르겠습니다.

답변

2
Router.map(funtion(){ 
    this.route('home', { path: '/'}); 
}); 

기능의 철자가 정확하지 않습니다.

+1

oops nevermind : D – pyprism