我正在尝试在此控制器中使用angular实现一个简单的$ http帖子。
app.controller('LoginCtrl',['$scope','admin','$http',function($scope,$http,admin){
$scope.isAdmin = admin.isAdmin;
$scope.logout = admin.logout;
$scope.login = function(){
if(!$scope.username || !$scope.password ){ return; }
$http.post('/login',{ username: $scope.username, password: $scope.password });
$scope.username = '';
$scope.password = '';
};
}]);
这部分
$http.post('/login',{ username: $scope.username, password: $scope.password });
抛出此错误
TypeError: undefined is not a function
at l.$scope.login (http://localhost:3000/javascripts/angularApp.js:165:9)
at hb.functionCall (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:198:426)
at Cc.(anonymous function).compile.d.on.f (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:214:485)
at l.$get.l.$eval (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:126:193)
at l.$get.l.$apply (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:126:419)
at HTMLFormElement.<anonymous> (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:215:36)
at HTMLFormElement.c (http://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js:32:363)
这是ui-view的HTML。
<script type="text/ng-template" id="/login.html">
<button id="logout" class="btn btn-default" ng-click="logout()" ng-show="isAdmin()">Log Out</button>
<div ng-controller="LoginCtrl">
<form id="login" ng-submit="login()">
<h2>The Login Page.</h2>
<label>Username:</label>
<input type="text" ng-model="username" placeholder="username"/>
<label>Password:</label>
<input type="password" ng-model="password" placeholder="password"/>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</script>
我已经检查了语法,一切看起来都正确,当我在控制台范围内调度它时,$ http被识别为对象。由于某种原因我无法发出此帖子请求,因为抛出了错误。我正在使用expressjs来提供内容,以及我目前用于&#39; / login&#39;只是一个简单的response.send(&#39;响应发送!&#39;)。正如你在HTML中看到我使用的是角度ui-router,我也为它设置了一个.state,如果需要提供,请告诉我。
我对此感到沮丧,因为这是明显已知的功能,我在网上找不到任何资源来帮助我解决确切的问题。我已经尝试在标题和其他在线解决方案中设置内容类型,但没有任何帮助。似乎它可能是一些愚蠢的东西,但我无法找到它。
感谢您的任何意见或帮助,谢谢。
答案 0 :(得分:16)
依赖注入顺序错误
app.controller('LoginCtrl', ['$scope', 'admin', '$http',function($scope, $http, admin) { ...
应该是
app.controller('LoginCtrl', ['$scope', '$http', 'admin', function($scope, $http, admin) { ...