Wie würde man ein Ereignis auf einer Routenänderung beobachten / auslösen?
Wie würde man ein Ereignis auf einer Routenänderung beobachten / auslösen?
Antworten:
Hinweis : Dies ist die richtige Antwort für eine ältere Version von AngularJS. In dieser Frage finden Sie aktualisierte Versionen.
$scope.$on('$routeChangeStart', function($event, next, current) {
// ... you could trigger something here ...
});
Die folgenden Ereignisse sind ebenfalls verfügbar (ihre Rückruffunktionen verwenden unterschiedliche Argumente):
Siehe die $ route- Dokumente.
Es gibt zwei weitere undokumentierte Ereignisse:
Siehe Was ist der Unterschied zwischen $ locationChangeSuccess und $ locationChangeStart?
$locationChangeStart
und $locationChangeSuccess
sind jetzt dokumentiert! docs.angularjs.org/api/ng.$location
$rootScope.$on("$routeChangeStart", function (event, next, current) {
jetzt.
Wenn Sie die Uhr nicht in einem bestimmten Controller platzieren möchten, können Sie die Uhr für die gesamte Anwendung in der Angular-App hinzufügen run()
var myApp = angular.module('myApp', []);
myApp.run(function($rootScope) {
$rootScope.$on("$locationChangeStart", function(event, next, current) {
// handle route changes
});
});
$rootScope.$on( "$routeChangeStart", function(event, next, current) {
//..do something
//event.stopPropagation(); //if you don't want event to bubble up
});
$rootScope.$on( "$routeChangeStart", function(event, next, current) {
//if you want to interrupt going to another location.
event.preventDefault(); });
Dies ist für den absoluten Anfänger ... wie ich:
HTML:
<ul>
<li>
<a href="#"> Home </a>
</li>
<li>
<a href="#Info"> Info </a>
</li>
</ul>
<div ng-app="myApp" ng-controller="MainCtrl">
<div ng-view>
</div>
</div>
Winkel:
//Create App
var app = angular.module("myApp", ["ngRoute"]);
//Configure routes
app.config(function ($routeProvider) {
$routeProvider
.otherwise({ template: "<p>Coming soon</p>" })
.when("/", {
template: "<p>Home information</p>"
})
.when("/Info", {
template: "<p>Basic information</p>"
//templateUrl: "/content/views/Info.html"
});
});
//Controller
app.controller('MainCtrl', function ($scope, $rootScope, $location) {
$scope.location = $location.path();
$rootScope.$on('$routeChangeStart', function () {
console.log("routeChangeStart");
//Place code here:....
});
});
Hoffe das hilft einem absoluten Anfänger wie mir. Hier ist das vollständige Arbeitsbeispiel:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular-route.min.js"></script>
</head>
<body>
<ul>
<li>
<a href="#"> Home </a>
</li>
<li>
<a href="#Info"> Info </a>
</li>
</ul>
<div ng-app="myApp" ng-controller="MainCtrl">
<div ng-view>
</div>
</div>
<script>
//Create App
var app = angular.module("myApp", ["ngRoute"]);
//Configure routes
app.config(function ($routeProvider) {
$routeProvider
.otherwise({ template: "<p>Coming soon</p>" })
.when("/", {
template: "<p>Home information</p>"
})
.when("/Info", {
template: "<p>Basic information</p>"
//templateUrl: "/content/views/Info.html"
});
});
//Controller
app.controller('MainCtrl', function ($scope, $rootScope, $location) {
$scope.location = $location.path();
$rootScope.$on('$routeChangeStart', function () {
console.log("routeChangeStart");
//Place code here:....
});
});
</script>
</body>
</html>