2013-08-02 77 views
-2

我正在使用coffeescript(我是新手),backbonejs和rails 4.0.0在後端的項目上工作。我想提出在CoffeeScript中的骨幹路由器類下面的代碼coffeescript代碼中的縮進問題

class App.Routers.MainRouter entends Backbone.Router 

    routes: 
     "": "index" 

    index: -> 
     console.log "Hello form router" 

但上面的代碼總是返回以下錯誤

enter image description here

我嘗試不同類型的壓痕,但它不斷給我這個錯誤。我在哪裏犯錯,我該如何解決?

回答

3

嘗試改變:

class App.Routers.MainRouter entends Backbone.Router 

class App.Routers.MainRouter extends Backbone.Router 
+0

請告訴我你和我之間有什麼區別? – 2619

+2

你有一個錯字「進入」 – wpp