0
Routers
에 Students
과 Colleges
의 두 가지 리소스가 있습니다.여러 라우터를 초기화하는 방법은 무엇입니까?
class App.Routers.Colleges extends Backbone.Router
routes:
"index": 'index'
class App.Routers.Students extends Backbone.Router
routes:
'index': 'index'
'new': 'newStudent'
어떻게 작동하는지이 두 경로를 초기화 하시겠습니까?
아래 코드와 같이 초기화하려고했지만 작동하지 않습니다.
window.App =
Models: {}
Collections: {}
Views: {}
Routers: {}
initialize: ->
new App.Routers.Students
new App.Routers.Colleges
Backbone.history.start()
$(document).ready ->
App.initialize()
나는 위의 코드를 실행하려고
, 그것은 단지 대학과 학생 DIV 모두new App.Routers.Colleges
나에게 데이터를 보여주는 것.