Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $http.post("http://localhost:8080/rest/tarefas", $scope.tarefa)
  2. .success(function(data, status, headers, config) {
  3. alert('Tarefa Adicionada com sucesso');
  4. $scope.buscaTarefa();
  5. }).error(function(data, status, headers, config) {
  6. alert('error');
  7. });
  8. $scope.buscaTarefa();
  9. $route.reload();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement