Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery, send JSON object using GET method

Tags:

json

jquery

ajax

I am trying to send a json object using GET method. My code:

$.ajax({
           url: "/api/endpoint",
           type: "GET",
           data: {"sort":"date"},
           contentType: "application/json",
           dataType: "json",
           ...

However, the headers received have "Content-Length" set to zero, hence my json parser on the server doesn't read the content.

I have already tried setting content length header, but it still comes to the server as zero:

$.ajax({
           url: "/api/endpoint",
           headers: {"CONTENT_LENGTH",JSON.stringify({"sort":"date"}).length},
           type: "GET",
           data: {"sort":"date"},
           contentType: "application/json",
           dataType: "json",
           ...

Any idea how to get this working? It HAS to be GET request.

like image 811
Roman Semko Avatar asked Jun 08 '12 11:06

Roman Semko


3 Answers

GET requests (at least usually) do not have a message body. As mentioned in the docs, jQuery appends data of GET requests to the url parameters. You should be able to read your sort parameter from there with your server application.

BTW, no user agent will allow you to set the Content-Length header - it will (and must) be done automatically depending on the sent data.

like image 91
Bergi Avatar answered Oct 12 '22 12:10

Bergi


There are a few places where you have gone a bit wrong.

  • It is not CONTENT_LENGTH, its Content-Length.
  • Do not set Content-Length header, the browser will do it for you.
  • Get request has content-length = 0.

Something like the below should work for you:

$.ajax({      url: "/api/endpoint?parameters="+encodeURIComponent(JSON.stringify({"sort":"date"})),      type: "GET",      ... }); 
like image 29
UltraInstinct Avatar answered Oct 12 '22 10:10

UltraInstinct


I think you should use JSON.stringify for GET parameters in URL like this:

$.ajax({
           url: "/api/endpoint?parameters="+JSON.stringify({"sort":"date"}),
           type: "GET",
           contentType: "application/json",
           dataType: "json",
           ...
like image 20
bahaddin.yasar Avatar answered Oct 12 '22 10:10

bahaddin.yasar