在我的angularjs应用程序中,我使用$ http来获取控制器中的数据。
app.controller("testController", function($scope, $http, $log){
$http({
method: 'GET',
url: '/get-data/',
params: {'data-id': 1}
})
.then(function(response){
$log.debug("success");
},function(){
$log.debug("failed");
}
);
}
但是它被告知代码在某个时候不起作用,$ http方法似乎没有。它发生了几次,但我找不到原因。
如何解决问题?