该
.success和
.error方法已过时,已经从AngularJS1.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方法。— AngularJS(v1.5)$ http服务API参考-
弃用声明。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)