我如何处理成功路由网址更改,然后我应该向新路由网址控制器发出广播事件。
$location.path('new_url');
$scope.$on('$routeChangeSuccess', function (scope, next, current) {
$rootScope.$broadcast('openFunction', note);
});
但是当前示例不起作用,对我来说下面的工作示例:
$timeout(function() {
$rootScope.$broadcast('openFunction', note);
}, 300);
但使用超时是错误的。