In my server I've got the following code:
response.getWriter().write(myJsonString);
response.setContentType("application/json;charset=UTF-8");
response.setHeader("Cache-Control", "no-cache");
return null;
This returns the JSON object as a string (as in displays it on-screen) if I do a normal form submit or an AJAX jQuery submit. But when I add code from the malsup example at http://jquery.malsup.com/form/#json to handle the response, I can't get the alert to display? I can't even tell if it's the response setting or the jQuery getting that's incorrect.
$('form[name=uploadForm]').submit(function() {
//ajax form submission
$('form[name=uploadForm]').ajaxSubmit({
// dataType identifies the expected content type of the server response
dataType: 'json',
// success identifies the function to invoke when the server response
// has been received
success: processJson
});
//cancels normal form submission
return false;
});
function processJson(data) {
// 'data' is the json object returned from the server
alert(data.message);
}
I am open to options that eradicate the use of the form plugin (i.e. just using the jQuery.post() call).
.ajaxSubmit()then the JSON is displayed on screen. I presume its a problem with the jQuery/javascript. – edwardmlyte Jul 20 '12 at 10:40application/json. – edwardmlyte Jul 23 '12 at 11:10