angular怎么获取前一个页面的url

想知道当前页面是由哪个页面跳过来的,应该怎么做呢?我用ui-router,把$state打印出来但是没有找到相关的内容诶

阅读 7.1k
2 个回答
    rootScope.$on('$stateChangeSuccess', function (ev, to, toParams, from, fromParams) {
        $rootScope.previousState = from;
        $rootScope.previousParams = fromParams;
    });
新手上路,请多包涵

$state.current

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进