angularjs|ngRouteを使ったシングルページアプリケーション(SPA)の実装例
angularjs
のngRoute
を使ってシングルページアプリケーション(SPA)を実装します。
<!DOCTYPE html>
<html ng-app="app">
<head>
<base href="/">
<script type="text/javascript">
var app = angular.module('app', ['ngRoute']); //ngRouteを含める
app.config(function($routeProvider, $locationProvider) {
$routeProvider.
when('/index.html', {
templateUrl: 'template/index.html',
controller: 'IndexController',
}).
when('/samplepage1.html', {
templateUrl: 'template/samplepage1.html',
controller: 'Sample1Controller',
}).
when('/samplepage2.html', {
templateUrl: 'template/samplepage2.html',
controller: 'Sample2Controller',
}).
otherwise({
redirectTo: '/index.html',
});
$locationProvider.html5Mode(true);
});
</script>
</head>
<body>
<ng-view></ng-view>
</body>
</html>