在Ember.js中查找当前路线的名称

时间:2013-11-11 08:32:27

标签: ember.js

我需要知道来自控制器的Ember中当前路线的名称。搜索后我发现此topictopicthis.routeNamethis.get('currentPath')剂量为我工作。我的Ember版本是1.1.2

1 个答案:

答案 0 :(得分:4)

我知道如何执行此操作的唯一方法是要求application这样的控制器。

App.AfterController = Ember.Controller.extend({
  needs: ['application'],
  init: function() {
    alert('Current route is ' + this.get('controllers.application.currentPath'));
    this._super();
  }
});