このエラーの取得:
angular.min.js:122 TypeError:$ http.get(...)。successは、Object.invoke(angular.min)のnew(app.js:12)のgetUserInfo(app.js:7)の関数ではありません.js:43)Q.instance(angular.min.js:93)でp(angular.min.js:68)でg(angular.min.js:60)でg(angular.min.js:61) )g(angular.min.js:61)で、angle.min.js:60で、angular.min.js:21で
ここに私のコードがあります:
var gitHub = angular.module('gitHub', []);
gitHub.controller('mainController', ['$scope', '$http', function($scope, $http) {
var $scope.user = '';
function getUserInfo($scope, $http){
$http.get('https://api.github.com/users')
.success(function (result) {
$scope.user = result;
console.log(result);
});
};
getUserInfo($scope, $http);
}]);
そして、これがhtmlです
<!DOCTYPE html>
<html ng-app="gitHub">
<head>
<title>Github Users Directory</title>
<script src="angular.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<div ng-controller="mainController">
<div>
<h1>GitHub Users</h1>
Who do you want to search for?<input type="text" name="FindHim" ng-model="queryName" />
<button ng-click="getUserInfo()">Search</button>
</div>
<div>
{{ user }}
</div>
</div>
</body>
</html>
.success
および.error
メソッドは非推奨であり、 AngularJS 1.6から削除されました です。代わりに標準の.then
メソッドを使用してください。
$http.get('https://api.github.com/users')
.then(function (response) {
var data = response.data;
var status = response.status;
var statusText = response.statusText;
var headers = response.headers;
var config = response.config;
$scope.user = data;
console.log(data);
});
廃止のお知らせ
$http
レガシー約束メソッド.success
および.error
は非推奨になり、v1.6.0で削除されます。代わりに標準の.then
メソッドを使用してください。
SO:angular $ httpの成功/エラーメソッドが非推奨になった理由 も参照してください。
angular を使用する場合、.successではなく.thenを使用する必要があると思います。
ドキュメントの例
var promise = asyncGreet('Robin Hood');
promise.then(function(greeting) {
alert('Success: ' + greeting);
}, function(reason) {
alert('Failed: ' + reason);
}, function(update) {
alert('Got notification: ' + update);
});
$ Httpの使用例は次のとおりです。
// Simple GET request example:
$http({
method: 'GET',
url: '/someUrl'
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
最後に、コードは次のようになります
$scope.getUserInfo = function () {
$http.get('https://api.github.com/users')
.then(function (result) {
$scope.user = result;
console.log(result);
}, function(result) {
//some error
console.log(result);
});
};
これは動作します
https://docs.angularjs.org/api/ng/service/$http
// Simple GET request example:
$http({
method: 'GET',
url: '/someUrl'
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
現在の実装では、ng-click="getUserInfo()"
からgetUserInfo
に引数(つまり、$scope
および$http
)を渡していないため、エラーが発生しています。
これらを$scope
および$http
のように引数として渡し、コントローラーに既に挿入されているため、$scope
で関数を定義する必要はありません。
gitHub.controller('mainController', ['$scope', '$http', function($scope, $http) {
$scope.user = '';
//Redefined function, without arguments
$scope.getUserInfo = function (){
$http.get('https://api.github.com/users')
.success(function (result) {
$scope.user = result;
console.log(result);
});
};
$scope.getUserInfo();
}]);
$ scope、$ httpを挿入する必要はありません。
app.controller('MainController', function($scope, $http) {
$scope.fetchData = function(_city){
$http.get("../api/AllPlaces?filter[where][placeCity]="+ _city)
.then(function(response) {
$scope.Data = response.data;
});
}
});
$http({
method: 'GET',
url: '....',
headers: {
'Authorization': 'Bearer ' + localStorage["token"]
}
})
.then(function (data, status, headers, config) {
alert(JSON.stringify(data) + "Status" + status);
})
.error(function (data, status, headers, config) {
alert(JSON.stringify(data) + "Status" + status);
});
コントローラーへの依存関係として既に$ httpを挿入しているため、関数パラメーターとして$ httpを渡す必要はありません。コードにいくつかの変更を加えました。正常に動作することを確認してください。
var gitHub = angular.module('gitHub', []);
gitHub.controller('mainController', ['$scope', '$http', function ($scope, $http) {
$scope.user = '';
$scope.getUserInfo = function() {
$http.get('https://api.github.com/users')
.success(function (result) {
$scope.user = result;
console.log(result);
});
};
$scope.getUserInfo();
}]);
Angular JS $http
documentation によると、このシステムは1.4.3 +
から除外されているので、彼の post =そして、あなたはこの方法を試すことができます
app.controller('MainCtrl', function ($scope, $http){
$http({
method: 'GET',
url: 'api/url-api'
}).then(function (success){
},function (error){
});
}
OR
$http.get('api/url-api').then(successCallback, errorCallback);
function successCallback(response){
//success code
}
function errorCallback(error){
//error code
}
私にとっては、より柔軟な2番目の方が好きです。