app.service('customersService', function ($http) {
this.getCustomer = function (id) {
$http({
method: 'GET',
url: '/getCustomer',
params: {id: id},
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
}).success(function(data) {
console.log(data);
return data;
})
};
});
私はこの
customersService.getCustomer(customerID).then
を実行しようとするサービス このコードの問題から、コントローラ内のデータをされて得ることができません
angular.js:13294 TypeError: Cannot read property 'then' of undefined.
主なものは、サービスへの呼び出しが生成され、サービス内のコンソールに結果を表示しようとすると、データがそこにあります。しかし、私は私のコントローラでデータを取得することはできません。
現在かなりうまく動作しています。ありがとう! –