以下は私の $http 呼び出しです。angularは、実際の$ http呼び出しの前に実行される成功の ような機能を持っていますか
$http.post(postUrl, $scope.tempData, {
}).success(function(response) {
alert(response);
}).error(function (errorCode) {
alert(errorCode);
}
);