Pass and receive data for servlet in the same AJAX function

0

Is there any way to send parameter to servlet and receive a json in the same AJAX function? Example of what I need:

 function UpdateGrafico(){

          $(function () {

                //---------------------
       //aqui preciso enviar uma data para o servlet realizar um select        
      $.ajax({  
     data: "",  
     dataType: 'json',  
     url: './GetValores', 
     type: 'POST', 
     success: function(data){  

           //recebe os dados json e atualiza pagina 
        });
    }

I need this form because the JSP page has a button and when I click it, it will get a date that the user selected, and used this date for a select in the servlet, which will return the data to update a chart on the JSP page.

    
asked by anonymous 16.07.2017 / 01:51

1 answer

0

I found the answer, below:

 function UpdateGrafico(){

          $(function () {

                //---------------------
       //aqui preciso enviar uma data para o servlet realizar um select        
      $.ajax({  
     data: varival: "valor1", //aqui passa o valor para o servlet 
     dataType: 'json',  
     url: './GetValores', //nome do servlet
     type: 'POST', 
     success: function(data){  

           //recebe os dados json e atualiza pagina 
        });
    }
    
18.07.2017 / 18:45