AngularJS 路由不起作用

AngularJS routing doesn't work

我无法在我的页面中实现 angularJS 路由,当我第一次创建它时,它有效,但在浏览器之后 returns 什么都没有。 代码: http://plnkr.co/edit/lIXeC0X6SkzXKcr8hoAp?p=catalogue

应用程序:

    angular.module('$routingApp', ['ngRoute'])
        .config(['$routeProvider', function($routeProvider){
            $routeProvider
            .when('/', {
                templateUrl: 'main.html'
            })
            .otherwise({
                redirectTo: '/'
            });
        }]);

问题出在您的模块名称上,正如@sp00m 所建议的,请参阅下面更新的 plunkr link:

angular.module('routingApp', ['ngRoute'])
    .config(['$routeProvider', function($routeProvider){
        $routeProvider
        .when('/', {
            templateUrl: 'main.html'
        })
        .otherwise({
            redirectTo: '/'
        });
    }]);

PLUNKR