Rotadaki bir olay nasıl izlenir / tetiklenir?
Rotadaki bir olay nasıl izlenir / tetiklenir?
Yanıtlar:
Not : Bu, AngularJS'nin eski bir sürümü için uygun bir cevaptır. Güncellenmiş sürümler için bu soruya bakın .
$scope.$on('$routeChangeStart', function($event, next, current) {
// ... you could trigger something here ...
});
Aşağıdaki olaylar da mevcuttur (geri arama işlevleri farklı argümanlar alır):
$ Route belgelerine bakın .
Belgesiz iki olay daha var:
Bkz $ locationChangeSuccess ile $ locationChangeStart arasındaki fark nedir?
$locationChangeStart
ve $locationChangeSuccess
şimdi belgelenmiştir! docs.angularjs.org/api/ng.$location
$rootScope.$on("$routeChangeStart", function (event, next, current) {
şimdi.
Saati belirli bir denetleyiciye yerleştirmek istemiyorsanız, tüm uygulama için saati Angular uygulamasında ekleyebilirsiniz. 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(); });
Bu yeni başlayanlar için ... benim gibi:
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>
Açısal:
//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:....
});
});
Umarım bu benim gibi toplam bir acemi yardımcı olur. İşte tam çalışma örneği:
<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>