在localhost中无法在AngularJS中POST /index.html错误,而在服务器上运行正常

时间:2016-01-06 06:11:47

标签: javascript angularjs angularjs-directive localhost http-post

我目前正在使用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

1 个答案:

答案 0 :(得分:0)

你在html中包含了'angular-route.js'吗? 类似的问题

Angular unknown provider and Cannot POST /signup