6
$ httpは関数ではありませんが、人々がこの問題を抱くすべての記事を読んだことがあります。注文間違い。
私のモジュール定義は次のようになります。
angular.module("app", []).controller("appCtrl", ['$scope','$http',
function ($scope, $http) {
...
$scope.makeCall= function ($http) {
console.log("HERE");
$http({ method: 'GET', url: <url }).
then(function (response) {
console.log(response.data);
return response.data;
}, function (response) {
});
};
}
])
任意の提案をいただければ幸いです。
となります。この$ scope.makeCall = function(){ –