Android jQuery AJAX requests may be missing parameters

When using jQuery to fetch JSON data from a service on an Android browser, depending on the setup the server may or may not receive all the parameters with the request.

Even though the following code is perfectly correct the "active" parameter is some cases never reaches the server:

$.ajax({
 url : "/survey/listjson",
 dataType : "json",
 contentType: "application/json",
 cache : false,
 data: {"active" : activeOnly},
 success : function(e) {
  var surveys = [];
  for ( var i = 0, survey; survey = e[i]; i++) {
  surveys.push(new Survey().extend(survey));
 }
 callback(surveys);
 }
});

To fix it, try removing the contentType and dataType parameters. It does not really help either the server or the client but in some (older) mobile browsers will cause issues.

Comments

Popular posts from this blog

MurMurHash3, an ultra fast hash algorithm for C# / .NET

ESP32 - send a push notification from the Arduino ESP32 device to your phone

Octoprint as a systemd service - running it with high priority