0

以下控制器正在生成错误消息“无法调用未定义的方法 'jsonp'”。我怀疑我没有正确注入 $http 。有人可以告诉我我做错了什么吗?

'use strict';

/* Controllers */

angular.module('myApp.controllers', []).

  controller('ImagesCtrl', [function ImagesCtrl ($scope, $http) {
    $http.jsonp('http://localhost:3000/image?quantity=1&language=Cantonese&callback=JSON_CALLBACK')
    .success(function(data){
      console.log(data);
      $scope.image = data;
    }); 

  }])


  .controller('CaptionsCtrl', [function() {

  }]);
4

1 回答 1

1

我猜你没有正确注入依赖项

app.controller(<controller_name>, ['$scope', function($scope) {}]);

在你的情况下应该是

app.controller('ImagesCtrl', ['$scope', '$http', function($scope, $http) {}]);

或者,如果您不想使用注释(有利于缩小):

app.controller('ImagesCtrl', function () {
    console.log("in the controller");
});
于 2013-07-04T13:39:28.563 回答