时间:2021-05-28
AngularJS 路由允许我们通过不同的 URL 访问不同的内容。
通过 AngularJS 可以实现多视图的单页Web应用(single page web application,SPA)。
通常我们的URL形式为http://runoob.com/first/page,但在单页Web应用中 AngularJS 通过 # + 标记 实现,例如:
http://runoob.com/#/first
http://runoob.com/#/second
http://runoob.com/#/third
先看看$routeProvider 的配置对象属性方法:
路由设置对象解析:
$routeProvider.when(url(路由名称), { template: string(模板提示字符串), templateUrl: string(模板路径URL), controller: string, function 或 array(在当前模板创建控制器,生成新的 $scope 作用域), controllerAs: string(控制器别名), redirectTo: string, function(重定向地址), resolve: object<key, function>(当前路由所依赖的模块)});实现路由的大致步骤:
第一步:导入ngRoute模块
<script type="text/javascript" src="js/angular-route.min.js"></script>
第二步:在应用模块中使用ngRoute
angular.module("routeApp", ["ngRoute"])
第三步:使用 ng-view 指令
<div ng-view class="well" ng-controller='defaultCtrl'></div>
第四步:配置 $routeProvider 路由规则
....config(['$routeProvider', function ($routeProvider){ $routeProvider .when('/home', { templateUrl : 'home.tpl.html', controller : 'HomeCtrl', }) .when('/computer', { templateUrl : 'computer.html', }) .when('/phone', { templateUrl : 'phone.html', }) .when('/other', { templateUrl : 'other.tpl.html', controller : 'OtherCtrl', })}])...第五步:通过超链接使用路由
<ul class="nav nav-tabs"> <li><a href="#/home">首页</a></li> <li><a href="#/computer">电脑</a></li> <li><a href="#/phone">手机</a></li> <li><a href="#/other">其他</a></li></ul>完整案例:
1 route.html页面
2.computer.html 页面
<div class="panel-body"> <table class="table table-striped table-hover"> <thead> <tr> <th>名称</th> <th>类别</th> <th class="text-right">价格</th> <th>{{data}}</th> </tr> </thead> <tbody> <tr ng-repeat="item in computers"> <td>{{item.name}}</td> <td>{{item.category}}</td> <td class="text-right">{{item.price | currency}}</td> <td class="text-center"> <button class="btn btn-xs btn-primary" ng-click="deleteProduct(item)">删除</button> <a href="/edit/{{item.id}}" class="btn btn-xs btn-primary" ng-click="editOrCreateProduct(item)">编辑</a> <button class="btn btn-xs btn-primary" ng-click="incrementPrice(item)">+</button> </td> </tr> </tbody> </table> <div> <button class="btn btn-xs btn-primary" ng-click="editOrCreateProduct()">添加</button> <a href="create" class="btn btn-xs btn-primary" ng-click="editOrCreateProduct()">Add</a> </div></div>3.phone.html 页面
<div class="panel-body"> <table class="table table-striped table-hover"> <thead> <tr> <th>名称</th> <th>类别</th> <th class="text-right">价格</th> <th>{{data}}</th> </tr> </thead> <tbody> <tr ng-repeat="item in phones"> <td>{{item.name}}</td> <td>{{item.category}}</td> <td class="text-right">{{item.price | currency}}</td> <td class="text-center"> <button class="btn btn-xs btn-primary" ng-click="deleteProduct(item)">删除</button> <a href="/edit/{{item.id}}" class="btn btn-xs btn-primary" ng-click="editOrCreateProduct(item)">编辑</a> <button class="btn btn-xs btn-primary" ng-click="incrementPrice(item)">+</button> </td> </tr> </tbody> </table> <div> <button class="btn btn-xs btn-primary" ng-click="editOrCreateProduct()">添加</button> <a href="create" class="btn btn-xs btn-primary" ng-click="editOrCreateProduct()">Add</a> </div></div>单击“首页”
单击“电脑”
单击“手机”
单击“其他”
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
AngularJS路由本章节我们将为大家介绍AngularJS路由。AngularJS路由允许我们通过不同的URL访问不同的内容。通过AngularJS可以实现
前言本章节将为大家介绍AngularJS路由。AngularJS路由允许我们通过不同的URL访问不同的内容。通过AngularJS可以实现多视图的单页Web应用
本文实例讲述了AngularJS路由Ui-router模块用法。分享给大家供大家参考,具体如下:由于某些设计原因,AngularJS原生的路由模块有一些缺点,比
AngulagJs的页面使用Route跳转1.除了引用AngularJs.js外,还要引用路由JS,"~/Scripts/angularjs/angular-r
使用angularjs的但页面应用时,由于是本地路由在控制页面跳转,但是有的时候我们需要判断用户是否登录来判断用户是否能进入界面。angularjs是mvc架构