AngularJS
Routing med ngRoute
Sök…
Anmärkningar
ngRoute
är en ngRoute
modul som tillhandahåller routing och deeplinking-tjänster och direktiv för kantiga appar.
Fullständig dokumentation om ngRoute
finns tillgänglig på https://docs.angularjs.org/api/ngRoute
Grundläggande exempel
Detta exempel visar att du ställer in en liten applikation med 3 rutter, alla med sin egen vy och styrenhet, med controllerAs
syntax.
Vi konfigurerar vår router med den vinklade .config
funktionen
- Vi injicerar
$routeProvider
i.config
- Vi definierar våra
.when
på..when
metoden med ett.when
. - Vi tillhandahåller
.when
metoden med ett objekt som anger vårtemplate
ellertemplateUrl
,controller
ochcontrollerAs
app.js
angular.module('myApp', ['ngRoute'])
.controller('controllerOne', function() {
this.message = 'Hello world from Controller One!';
})
.controller('controllerTwo', function() {
this.message = 'Hello world from Controller Two!';
})
.controller('controllerThree', function() {
this.message = 'Hello world from Controller Three!';
})
.config(function($routeProvider) {
$routeProvider
.when('/one', {
templateUrl: 'view-one.html',
controller: 'controllerOne',
controllerAs: 'ctrlOne'
})
.when('/two', {
templateUrl: 'view-two.html',
controller: 'controllerTwo',
controllerAs: 'ctrlTwo'
})
.when('/three', {
templateUrl: 'view-three.html',
controller: 'controllerThree',
controllerAs: 'ctrlThree'
})
// redirect to here if no other routes match
.otherwise({
redirectTo: '/one'
});
});
Sedan definierar vi i vår HTML vår navigering med <a>
element med href
, för ett helloRoute
för helloRoute
kommer vi att <a href="#/helloRoute">My route</a>
som <a href="#/helloRoute">My route</a>
Vi tillhandahåller också vår syn med en container och direktivet ng-view
att injicera våra rutter.
index.html
<div ng-app="myApp">
<nav>
<!-- links to switch routes -->
<a href="#/one">View One</a>
<a href="#/two">View Two</a>
<a href="#/three">View Three</a>
</nav>
<!-- views will be injected here -->
<div ng-view></div>
<!-- templates can live in normal html files -->
<script type="text/ng-template" id="view-one.html">
<h1>{{ctrlOne.message}}</h1>
</script>
<script type="text/ng-template" id="view-two.html">
<h1>{{ctrlTwo.message}}</h1>
</script>
<script type="text/ng-template" id="view-three.html">
<h1>{{ctrlThree.message}}</h1>
</script>
</div>
Exempel på ruttparametrar
Detta exempel utökar de grundläggande exemplet som passerar parametrar i rutten för att använda dem i styrenheten
För att göra det måste vi:
- Konfigurera parameterns placering och namn i ruttnamnet
- Injicera
$routeParams
tjänst i vår Controller
app.js
angular.module('myApp', ['ngRoute'])
.controller('controllerOne', function() {
this.message = 'Hello world from Controller One!';
})
.controller('controllerTwo', function() {
this.message = 'Hello world from Controller Two!';
})
.controller('controllerThree', ['$routeParams', function($routeParams) {
var routeParam = $routeParams.paramName
if ($routeParams.message) {
// If a param called 'message' exists, we show it's value as the message
this.message = $routeParams.message;
} else {
// If it doesn't exist, we show a default message
this.message = 'Hello world from Controller Three!';
}
}])
.config(function($routeProvider) {
$routeProvider
.when('/one', {
templateUrl: 'view-one.html',
controller: 'controllerOne',
controllerAs: 'ctrlOne'
})
.when('/two', {
templateUrl: 'view-two.html',
controller: 'controllerTwo',
controllerAs: 'ctrlTwo'
})
.when('/three', {
templateUrl: 'view-three.html',
controller: 'controllerThree',
controllerAs: 'ctrlThree'
})
.when('/three/:message', { // We will pass a param called 'message' with this route
templateUrl: 'view-three.html',
controller: 'controllerThree',
controllerAs: 'ctrlThree'
})
// redirect to here if no other routes match
.otherwise({
redirectTo: '/one'
});
});
Sedan, utan att göra några ändringar i våra mallar, bara lägga till en ny länk med anpassat meddelande, kan vi se det nya anpassade meddelandet i vår vy.
index.html
<div ng-app="myApp">
<nav>
<!-- links to switch routes -->
<a href="#/one">View One</a>
<a href="#/two">View Two</a>
<a href="#/three">View Three</a>
<!-- New link with custom message -->
<a href="#/three/This-is-a-message">View Three with "This-is-a-message" custom message</a>
</nav>
<!-- views will be injected here -->
<div ng-view></div>
<!-- templates can live in normal html files -->
<script type="text/ng-template" id="view-one.html">
<h1>{{ctrlOne.message}}</h1>
</script>
<script type="text/ng-template" id="view-two.html">
<h1>{{ctrlTwo.message}}</h1>
</script>
<script type="text/ng-template" id="view-three.html">
<h1>{{ctrlThree.message}}</h1>
</script>
</div>
Definiera anpassat beteende för enskilda rutter
Det enklaste sättet att definiera anpassat beteende för enskilda rutter skulle vara ganska enkelt.
I det här exemplet använder vi det för att autentisera en användare:
1) routes.js
: skapa en ny egenskap (som requireAuth
) för alla önskade rutter
angular.module('yourApp').config(['$routeProvider', function($routeProvider) {
$routeProvider
.when('/home', {
templateUrl: 'templates/home.html',
requireAuth: true
})
.when('/login', {
templateUrl: 'templates/login.html',
})
.otherwise({
redirectTo: '/home'
});
}])
2) I en toppnivåstyrenhet som inte är bunden till ett element inuti ng-view
(för att undvika konflikt med kantiga $routeProvider
), kontrollera om newUrl
har egenskapen requireAuth
och agera i enlighet därmed
angular.module('YourApp').controller('YourController', ['$scope', 'session', '$location',
function($scope, session, $location) {
$scope.$on('$routeChangeStart', function(angularEvent, newUrl) {
if (newUrl.requireAuth && !session.user) {
// User isn’t authenticated
$location.path("/login");
}
});
}
]);