Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $scope.contratos = [];
  2. $scope.Pesquisar = function(){
  3. $http.post('php/GetContratosProtocolo.php', {
  4. 'cpf':cpf
  5. }).success(function(data){
  6. if(typeof data == 'object'){
  7. $scope.contratos.push(data)
  8. }else{
  9. showerror('Contrato Não Encontrado')
  10. }
  11.  
  12. }).error(function(data){
  13. console.log(data)
  14. })
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement