How to get text response from jquery get method?

Raghu

I am requesting a servlet to get a String value , for that I am doing like this.

function histryTraceFun(){
    $.get('SendNodeHistoryTracing?node='+temp,function(response){
        alert("in response "+response); // Here I am not getting response
        });
} 

in servlet doGet() method I have,

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    response.setContentType("text/html");
    String node=request.getParameter("node");


}

The controll will come to servlet but not returning to JSP , in callback function alert the value of variable response is not comming. And actually I didnot understand how response.setContentType() work. can any one help me in this please. Thank you.

user3145373 ツ

Try this to send control back to your page :

RequestDispatcher dispatcher = request.getRequestDispatcher("/yourPage.html");
dispatcher.forward(request, response);

You can also add data in response :

response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
out.println("your_response");

RequestDispatcher dispatcher = request.getRequestDispatcher("/yourPage.html");
dispatcher.forward(request, response);

Still problem then post me.

Look Here, more understandable & explained code by balusc.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get the response text from an AJAX request using jQuery

From Dev

How to get Number from a text in Jquery

From Dev

How to get a specific string from the text in jQuery?

From Dev

How to get response text asynchronously?

From Dev

how to get response from node server using ajax method in html

From Dev

How can I get the second response from service with callback method?

From Dev

How to get raw JSON text from Unirest response in Java

From Dev

How to get response text from ajax callback in a variable using ExtJS

From Dev

How to get single data from a plain text response?

From Dev

How do I get the response text from a treq request?

From Dev

How to get response with .load jQuery

From Dev

How to get the ajax response from success and assign it in a variable using jQuery?

From Dev

How to get the ajax response from success and assign it in a variable using jQuery?

From Dev

how do i get a response from a jquery ajax request

From Dev

How to get the response title from the "jqXHR" object using jQuery?

From Dev

How to get data from response

From Dev

get text from response of shell command

From Dev

Unable to get desired Text Response from API

From Dev

How to get the response of form with POST method by cURL?

From Dev

How to do redirect instead of response to Get method

From Dev

AJAX/Jquery - Get response from php file

From Dev

jQuery get response from ajax function

From Dev

jQuery: get order id from json response

From Dev

How to get the response text of a DELETE with TIdHttp?

From Dev

How to get THIS of each jQuery method

From Dev

How to get Codeigniter api response from controller to get in view page using Jquery

From Dev

Get the text inside <h2> element from an ajax jquery post response

From Dev

How recuperate data from GET method with ajax/jquery

From Dev

How to get text to fade in jQuery?

Related Related

  1. 1

    How to get the response text from an AJAX request using jQuery

  2. 2

    How to get Number from a text in Jquery

  3. 3

    How to get a specific string from the text in jQuery?

  4. 4

    How to get response text asynchronously?

  5. 5

    how to get response from node server using ajax method in html

  6. 6

    How can I get the second response from service with callback method?

  7. 7

    How to get raw JSON text from Unirest response in Java

  8. 8

    How to get response text from ajax callback in a variable using ExtJS

  9. 9

    How to get single data from a plain text response?

  10. 10

    How do I get the response text from a treq request?

  11. 11

    How to get response with .load jQuery

  12. 12

    How to get the ajax response from success and assign it in a variable using jQuery?

  13. 13

    How to get the ajax response from success and assign it in a variable using jQuery?

  14. 14

    how do i get a response from a jquery ajax request

  15. 15

    How to get the response title from the "jqXHR" object using jQuery?

  16. 16

    How to get data from response

  17. 17

    get text from response of shell command

  18. 18

    Unable to get desired Text Response from API

  19. 19

    How to get the response of form with POST method by cURL?

  20. 20

    How to do redirect instead of response to Get method

  21. 21

    AJAX/Jquery - Get response from php file

  22. 22

    jQuery get response from ajax function

  23. 23

    jQuery: get order id from json response

  24. 24

    How to get the response text of a DELETE with TIdHttp?

  25. 25

    How to get THIS of each jQuery method

  26. 26

    How to get Codeigniter api response from controller to get in view page using Jquery

  27. 27

    Get the text inside <h2> element from an ajax jquery post response

  28. 28

    How recuperate data from GET method with ajax/jquery

  29. 29

    How to get text to fade in jQuery?

HotTag

Archive