使用ngRoute AngularJS时无法加载css和其他文件

时间:2015-07-22 07:32:54

标签: angularjs ngroute

   var voteApp = angular.module('VoteApp', [
    'ngRoute',
    'students'
    ]);

voteApp.config(function($routeProvider){
    $routeProvider.when('/', {
        templateUrl : 'index.html',
        controller : 'MainController'
    });
});


voteApp.controller('MainController',['$scope',function($scope){

 }]);

加载时,整个页面都会崩溃!

任何人都可以帮我吗?

1 个答案:

答案 0 :(得分:0)

  1. 您是否在服务器上运行了应用程序?如果没有,请转到您的终端并键入:python -m SimpleHTTPServer,然后在localhost上打开您的应用程序
  2. 尝试使用angular-ui-router而不是angular-route What is the difference between angular-route and angular-ui-router?