Ember App.Router.router.currentState undefined

时间:2013-02-22 07:43:20

标签: ember.js

我想监视App.Router.router.currentState以激活/停用导航链接。如下所述:https://stackoverflow.com/a/13312466/674525

但是,属性currentState似乎不再存在于路由器中。 App.get('Router.router.currentState')返回undefined。

我想,它在最近的Ember版本中发生了变化。还有另一种方法吗?

4 个答案:

答案 0 :(得分:11)

我相信使用新的Ember版本的“教科书”方式将是:

App.SomeController = Ember.Controller.extend({
    needs: 'application',
    someFunction: function(){
        var state = this.get('controllers.application.currentPath');
    }
})

答案 1 :(得分:9)

这对我来说当前版本有点复杂,但至少它有效:

var router = App.__container__.lookup("router:main"); //lookup the router
var currentHandlerInfos = r.router.currentHandlerInfos; //there are multiple handlers active at one time
var activeHandler = currentHandlerInfos[currentHandlerInfos.length - 1]; // the last item in the array is the current handler with properties like name, context, handler (Ember.Route)
var activeRoute = activeHandler.handler; //your route object

此代码的灵感来自阅读此Ember Source。我还没有在一个有很多路线的复杂应用程序中测试它,但我非常自信,它会正常工作。也许某人有更精益的方式: - )

答案 2 :(得分:8)

确定。得到了解决。似乎currentPath是在applicationController实例中设置的。所以我这样做了:

App = Em.Application.create({

    currentPath: '',

    ApplicationController : Ember.Controller.extend({
        updateCurrentPath: function() {
            App.set('currentPath', this.get('currentPath'));
        }.observes('currentPath')
    }),

    ...

});

然后,我可以从代码中的任何位置绑定或观察App.currentPath,并对其更改做出反应。

答案 3 :(得分:0)

我的组件中的这个例子。所有实体都有财产 - 容器。

GetCurrentPath:-> app = @container.lookup('controller:application') return app.get 'currentPath'