这让我现在快疯了。我无法让一个简单的路由器工作......
jQuery ->
class MyRouter extends Backbone.Router
routes:
"" :"index"
"/list" :"showList"
"/item/:id" :"showItem"
index: =>
alert "index"
showList: =>
alert "get the lists"
showItem: (id)=>
alert "the item #{id}"
@app = window ? {}
@app = window.app ? {}
@app.myRouter = MyRouter
Backbone.history.start()
我总是收到这个错误:
index.js:50Uncaught TypeError: Cannot call method 'start' of undefined
我看到了这个:启动backbone.js历史时无法调用未定义的'start'。
但这并没有帮助=(...
我相信这很容易,但我有点卡在这里......请帮助......