角度ui-router中的fromState返回空对象

时间:2014-03-16 16:19:21

标签: javascript angularjs angular-ui-router

当使用角度ui-router时,fromState参数返回一个空对象,而toState工作正常,我想访问fromState.name。我的ctrl看起来像这样:

.controller('MainCtrl', function ($rootScope) {

  // State change start
  $rootScope.$on('$stateChangeStart', function (event, toState, fromState){

    console.log(fromState); // -> Object {url: "/program", templateUrl: "views/program.html", resolve: Object, name: "program"}
    console.log(toState); // -> Object {} when clicking on e.g. 'news'

  });

});

1 个答案:

答案 0 :(得分:5)

我认为你在stateChangeStart函数中缺少一些参数。具体而言,toParams和来自Params。再次检查该回调的文档。你从fromState命名的可能真的是帕拉姆斯,如果国家没有参数,那就是为什么它是空的。