Advertisement
joaopaulofcc

Untitled

Sep 15th, 2021
1,291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     listarCargo();
  3. });
  4.  
  5. function listarCargo(){
  6.     $.get('https://localhost:5001/Cargo/Listar')
  7.         .done(function(resposta) {
  8.             for(i = 0; i < resposta.length; i++) {
  9.                 $('#cargo').append($('<option></option>').val(resposta[i].id).html(resposta[i].nome));
  10.             }
  11.         })
  12.         .fail(function(erro, mensagem, excecao) {
  13.             alert(mensagem + ': ' + excecao);
  14.         });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement