我有这个功能,当它被执行时,它被触发了两次。我看到alert(ok)
然后alert(ok)
我不知道为什么。
$rootScope.$on( "$routeChangeStart", function(event, next, current) {
if ( next.templateUrl == "partials/login.html" ) {
alert( "ok" );
$location.path( "/login" );
}
}