AngularJS 路由

ngRoute 模块能让您的应用程序成为单页应用程序。


在 AngularJS 中路由是什么?

如果您想导航到应用程序中的不同页面,但又希望该应用程序是 SPA(单页面应用程序),且无需重新加载页面,则可以使用 ngRoute 模块。

ngRoute 模块将应用程序 路由 到不同的页面,而无需重新加载整个应用程序。

导航到 "red.htm", "green.htm", 和 "blue.htm":

  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!red">Red</a>
  8. <a href="#!green">Green</a>
  9. <a href="#!blue">Blue</a>
  10. <div ng-view=""></div>
  11. <script>
  12. var app = angular.module("myApp", ["ngRoute"]);
  13. app.config(function($routeProvider) {
  14. $routeProvider
  15. .when("/", {
  16. templateUrl : "main.htm"
  17. })
  18. .when("/red", {
  19. templateUrl : "red.htm"
  20. })
  21. .when("/green", {
  22. templateUrl : "green.htm"
  23. })
  24. .when("/blue", {
  25. templateUrl : "blue.htm"
  26. });
  27. });
  28. </script>
  29. <p>点击链接导航到 "red.htm", "green.htm", "blue.htm", 或者返回 "main.htm"</p>
  30. </body>
  31. </html>

该怎么做?

要使应用程序为路由做好准备,必须包含 AngularJS 路由模块:

  1. <script src="https://cankaoshouce.com/js/angular-route.js"></script>

然后,必须将 ngRoute 作为依赖项添加到应用程序模块中:

  1. var app = angular.module("myApp", ["ngRoute"]);

现在,您的应用程序可以访问 route 模块,该模块提供 $routeProvider

使用 $routeProvider 在应用程序中配置不同的路由:

  1. app.config(function($routeProvider) {
  2. $routeProvider
  3. .when("/", {
  4. templateUrl : "main.htm"
  5. })
  6. .when("/red", {
  7. templateUrl : "red.htm"
  8. })
  9. .when("/green", {
  10. templateUrl : "green.htm"
  11. })
  12. .when("/blue", {
  13. templateUrl : "blue.htm"
  14. });
  15. });

从哪里开始?

应用程序需要一个容器来放置路由提供的内容。

此容器是 ng-view 指令。

在应用程序中包含 ng-view 指令有三种不同的方式:

实例:
  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!red">Red</a>
  8. <a href="#!green">Green</a>
  9. <a href="#!blue">Blue</a>
  10. <div ng-view=""></div>
  11. <script>
  12. var app = angular.module("myApp", ["ngRoute"]);
  13. app.config(function($routeProvider) {
  14. $routeProvider
  15. .when("/", {
  16. templateUrl : "main.htm"
  17. })
  18. .when("/red", {
  19. templateUrl : "red.htm"
  20. })
  21. .when("/green", {
  22. templateUrl : "green.htm"
  23. })
  24. .when("/blue", {
  25. templateUrl : "blue.htm"
  26. });
  27. });
  28. </script>
  29. <p>点击链接</p>
  30. <p>本例使用 ng-view 指令作为 DIV 元素的属性。</p>
  31. </body>
  32. </html>
实例:
  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!red">Red</a>
  8. <a href="#!green">Green</a>
  9. <a href="#!blue">Blue</a>
  10. <ng-view></ng-view>
  11. <script>
  12. var app = angular.module("myApp", ["ngRoute"]);
  13. app.config(function($routeProvider) {
  14. $routeProvider
  15. .when("/", {
  16. templateUrl : "main.htm"
  17. })
  18. .when("/red", {
  19. templateUrl : "red.htm"
  20. })
  21. .when("/green", {
  22. templateUrl : "green.htm"
  23. })
  24. .when("/blue", {
  25. templateUrl : "blue.htm"
  26. });
  27. });
  28. </script>
  29. <p>点击链接</p>
  30. <p>本例使用 ng-view 指令作为 DIV 元素的属性。</p>
  31. </body>
  32. </html>
实例:
  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!red">Red</a>
  8. <a href="#!green">Green</a>
  9. <a href="#!blue">Blue</a>
  10. <div class="ng-view"></div>
  11. <script>
  12. var app = angular.module("myApp", ["ngRoute"]);
  13. app.config(function($routeProvider) {
  14. $routeProvider
  15. .when("/", {
  16. templateUrl : "main.htm"
  17. })
  18. .when("/red", {
  19. templateUrl : "red.htm"
  20. })
  21. .when("/green", {
  22. templateUrl : "green.htm"
  23. })
  24. .when("/blue", {
  25. templateUrl : "blue.htm"
  26. });
  27. });
  28. </script>
  29. <p>点击链接</p>
  30. <p>本例使用 ng-view 指令作为 DIV 元素的属性。</p>
  31. </body>
  32. </html>

应用程序只能有一个 ng-view 指令,这将是路由提供的所有视图的占位符。


$routeProvider

使用 $routeProvider 您可以定义用户单击链接时要显示的页面。

  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!london">City 1</a>
  8. <a href="#!paris">City 2</a>
  9. <p>点击链接阅读有关伦敦和巴黎的信息。</p>
  10. <div ng-view=""></div>
  11. <script>
  12. var app = angular.module("myApp", ["ngRoute"]);
  13. app.config(function($routeProvider) {
  14. $routeProvider
  15. .when("/", {
  16. templateUrl : "main.htm"
  17. })
  18. .when("/london", {
  19. templateUrl : "london.htm"
  20. })
  21. .when("/paris", {
  22. templateUrl : "paris.htm"
  23. });
  24. });
  25. </script>
  26. </body>
  27. </html>

使用应用程序的 config 方法定义 $routeProvider。当应用程序加载时,将执行在 config 方法中注册的工作。


控制器

使用 $routeProvider,您还可以为每个 "view" 定义一个控制器。

  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!london">City 1</a>
  8. <a href="#!paris">City 2</a>
  9. <p>点击链接</p>
  10. <p>请注意,每个 "view" 都有自己的控制器,每个控制器都给 "msg" 变量一个值。</p>
  11. <div ng-view=""></div>
  12. <script>
  13. var app = angular.module("myApp", ["ngRoute"]);
  14. app.config(function($routeProvider) {
  15. $routeProvider
  16. .when("/", {
  17. templateUrl : "main.htm",
  18. })
  19. .when("/london", {
  20. templateUrl : "london.htm",
  21. controller : "londonCtrl"
  22. })
  23. .when("/paris", {
  24. templateUrl : "paris.htm",
  25. controller : "parisCtrl"
  26. });
  27. });
  28. app.controller("londonCtrl", function ($scope) {
  29. $scope.msg = "I love London";
  30. });
  31. app.controller("parisCtrl", function ($scope) {
  32. $scope.msg = "I love Paris";
  33. });
  34. </script>
  35. </body>
  36. </html>

"london.htm" 和 "paris.htm" 是普通的 HTML 文件,您可以像添加 AngularJS 应用程序的任何其他 HTML 部分一样添加 AngularJS 表达式。

这些文件看起来像这样:

london.htm

  1. <h2>London</h2>
  2. <h3>London is the capital city of England.</h3>
  3. <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
  4. <p>{{msg}}</p>

paris.htm

  1. <h2>Paris</h2>
  2. <h3>Paris is the capital city of France.</h3>
  3. <p>The Paris area is one of the largest population centers in Europe, with more than 12 million inhabitants.</p>
  4. <p>{{msg}}</p>

模板

在前面的示例中,我们使用了 $routeProvider.when 方法中的 templateUrl 属性。

您还可以使用 template 属性,它允许您直接在属性值中编写 HTML,而不引用页面。

  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!banana">Banana</a>
  8. <a href="#!tomato">Tomato</a>
  9. <p>点击链接更改内容。</p>
  10. <p>ng-view 指令中显示的 HTML 写在 $routeProvider 的 template 属性中。当你使用方法时。</p>
  11. <div ng-view=""></div>
  12. <script>
  13. var app = angular.module("myApp", ["ngRoute"]);
  14. app.config(function($routeProvider) {
  15. $routeProvider
  16. .when("/", {
  17. template : "<h2>Main</h2><p>Click on the links to change this content</p>"
  18. })
  19. .when("/banana", {
  20. template : "<h2>Banana</h2><p>Bananas contain around 75% water.</p>"
  21. })
  22. .when("/tomato", {
  23. template : "<h2>Tomato</h2><p>Tomatoes contain around 95% water.</p>"
  24. });
  25. });
  26. </script>
  27. </body>
  28. </html>

otherwise 方法

在前面的示例中,我们使用了 $routeProviderwhen 方法。

您还可以使用 otherwise 方法,这是其他方法都无法匹配时的默认路由。

  1. <!DOCTYPE html>
  2. <html>
  3. <script src="https://cdn.bootcdn.net/ajax/libs/angular.js/1.8.2/angular.min.js"></script>
  4. <script src="https://cankaoshouce.com/js/angular/angular-route.js"></script>
  5. <body ng-app="myApp">
  6. <p><a href="#/!">Main</a></p>
  7. <a href="#!banana">Banana</a>
  8. <a href="#!tomato">Tomato</a>
  9. <p>点击链接更改内容。</p>
  10. <p>使用 "otherwise" 方法定义在没有单击任何链接时显示的内容。</p>
  11. <div ng-view=""></div>
  12. <script>
  13. var app = angular.module("myApp", ["ngRoute"]);
  14. app.config(function($routeProvider) {
  15. $routeProvider
  16. .when("/banana", {
  17. template : "<h2>Banana</h2><p>Bananas contain around 75% water.</p>"
  18. })
  19. .when("/tomato", {
  20. template : "<h2>Tomato</h2><p>Tomatoes contain around 95% water.</p>"
  21. })
  22. .otherwise({
  23. template : "<h2>Nothing</h2><p>Nothing has been selected</p>"
  24. });
  25. });
  26. </script>
  27. </body>
  28. </html>

分类导航