I have watched angularjs and backbone these days, and learned about knockout and emberjs. I just saw a demo of an angular router on the Internet. Now I will write it down by the way.
The code copy is as follows:
<!----
DEMO_INDEX.html
-->
<!doctype html>
<head>
<meta charset="utf-8">
<title>route</title>
</head><br>//This important thing is to be compatible with IE. If you find it doesn’t work, IE cheats you, you know
<body ng-app="routeApp" id="routeApp">
<h1>Route Demo index</h1>
<script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2pre/html5shiv.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20121008/json2.js"></script>
<div ng-view></div>
<script src="http://localhost:81/js/angular.min.js"></script>
<script>
var routeApp = angular.module('routeApp',[]);
routeApp.config(['$routeProvider',function ($routeProvider) {
$routeProvider
.when('/list', {
templateUrl: 'list.html',
controller: 'RouteListCtl'
})
.when('/list/:id', {
templateUrl: 'detail.html',
controller: 'RouteDetailCtl'
})
.otherwise({
redirectTo: '/list'
});
}]);
//controller
routeApp.controller('RouteListCtl',function($scope) {
});
routeApp.controller('RouteDetailCtl',function($scope, $routeParams) {
$scope.id = $routeParams.id;
});
</script>
</body>
</html>
//list.html
Run the following code
The code copy is as follows:
<hr/>
<h3>Route : List.html</h3>
<ul>
<li ng-repeat="id in [1, 2, 3 ]">
<a href="#/list/{{ id }}"> ID{{ id }}</a>
</li>
</ul>
//detail.html
Run the following code
The code copy is as follows:
<hr/>
<h3>Route <span style="color: red;">{{id}}</span>: detail.html </h3>
That's all the code, I hope you can like it.