我目前正在使用AmgularJS项目,当我通过亚马逊服务器托管项目时,我成功登录Homeview,而它在本地主机中运行。
App.js 是这样的:
//Define an angular module for our app
var app = angular.module('blickbeeLite', [ 'ngRoute']);
app.controller('MainController', function($scope, $http)
{
});
app.config(['$provide', '$routeProvider', function ($provide, $routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/login.html',
})
.when('/:templateFile', {
templateUrl: function (param) { return 'views/'+param.templateFile+'.html' }
})
.otherwise({
redirectTo: '/'
});
}]);

,错误是:
无法发布/index.html
答案 0 :(得分:0)
你在html中包含了'angular-route.js'吗? 类似的问题