i have a code in my angular controller
$scope.message = '';
$http.post('/save/').success(function(data) {
$scope.message = "success";
});
console.log($scope.message);
//get empty string?
why after i run, i get empty string on $scope.message? how http.post when success return value because i want to reuse the value for my another function. thanks anyway.
The success callback for $http is called asynchronously, when the response is available. This explains why the console.log() can run before the callback. If another function needs the value, @ShaiRez provided two solutions already:
What about doing -
?
or am I missing something else?
What you are looking for is this:
Here is a sample plnkr example I've made