var voteApp = angular.module('VoteApp', [
'ngRoute',
'students'
]);
voteApp.config(function($routeProvider){
$routeProvider.when('/', {
templateUrl : 'index.html',
controller : 'MainController'
});
});
voteApp.controller('MainController',['$scope',function($scope){
}]);
加载时,整个页面都会崩溃!
任何人都可以帮我吗?
答案 0 :(得分:0)
python -m SimpleHTTPServer
,然后在localhost上打开您的应用程序