Я создал простое приложение для проверки ngRoute.У меня есть главная страница index.html с одной ссылкой на страницу с названием «informationdisplay.html».Я настроил маршрут в контроллере главной страницы, но он не работает.
Ниже приведен код index.html
<html>
<head>
<title>Ng route test</title>
<script
src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
</script>
<script type="text/javascript" src="Scripts/main.js"></script>
</head>
<body>
<h2> Select Location from List</h2>
<a href="#info">Information</a>
</body>
</html>
Мой код в контроллере
var mainApp = angular.module("mainApp",['ngRoute']);
mainApp.config(function ($routeProvider) {
$routeProvider.when('/info', {
templateUrl: 'informationdisplay.html',
controller: 'informationController'
}).otherwise({ redirectTo: '/' });
});
mainApp.controller('mainController', function ($scope,$rootScope) {
});