Module routes:
var switchModule = angular.module('switchModule', []);
switchModule.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/build-content', {templateUrl: 'build-content.html', controller: BuildInfoController});
}]);
Controller:
function BuildInfoController($http, $scope){
alert("hello");
}
Html:
<html ng-app="switchModule">
...
<body>
<ul>
<li><a href="#build-content"/></a></li>
</ul>
<div class="ng-view"></div>
</body>
...
Each time when i click the hyperlink ”, the ‘BuildInfoController’ will be called twice. Am i missing something here?
I had the same problem , and it seems there is a stupid bug with routing. There is some kind of redirection going on.
to fix it , i just added a slash in the href , like :
I hope it will fix things for you too.