我正在使用 ember.js-pre3 ember-data 修订版 11 构建项目管理应用程序。
如何初始化几个控制器并使它们在全球范围内可用。例如,我有一个 currentUser 控制器和 usersController,我需要在每个状态下访问它们。我曾经在 Ember.ready 函数中有以下代码,但它不再有效。我想我这样做的方式是为了调试。https://github.com/emberjs/ember.js/issues/1646
旧方式:
window.Fp = Ember.Application.create
ready: () ->
# Initialize Global collections
appController = @get 'router.applicationController'
store = @get 'router.store'
# User controller sets usersController binding on applicationController
# fetches all team users from server
# json returned from server includes flag "isCurrent"
usersController = @get 'router.usersController'
usersController.set 'content', store.findAll(Fp.User)
appController.set 'usersController', usersController
# CurrentUserController
# sets currentUserController binding on applicationController
# finds currentUser from usersController
currentUserController = @get 'router.currentUserController'
currentUserController.set 'content', usersController.get('findCurrentUser')
appController.set 'currentUserController', currentUserController
@_super()
在所有应用程序状态下访问 currentUser 控制器的正确方法是什么。