0
我想在視圖上啓動一個骨幹應用,該視圖已經由Rails呈現。具有自定義默認路由的主幹路由器
這裏是我的路由器代碼
class App.Routers.Dashboard extends Backbone.Router
routes:
'': 'index'
'locations/:id': 'showLocation'
index: ->
alert "Dashboard page"
initialize: ->
@route(/\/?/, 'index', @index);
然後渲染視圖裏面,我開始應用
$ ->
App.appRouter = new App.Routers.Dashboard()
Backbone.history.start
pushState: true
root: "/dashboard"
不過,如果我打開
http://localhost:3000/dashboard
路由器確實頁面不進入「索引」狀態。
我錯過了什麼嗎?