How to use jQuery to send JSON data to a Grails app
This took me a while to figure out, so here it is for anyone else who’d like to know. First, I was very surprised when the writers at order-essays.com and I learned that jQuery doesn't have a built-in method for converting objects to JSON, so you’ll need the JSON parser/creator from json.org. Then you can write your javascript POST function using the jQuery ajax method. Here I’ve left the content type as text/plain, which is not strictly correct but works with the Groovy code.
function postTreeData(){
$.ajax({
type: "POST",
url: "savedata",
contentType : "text/plain",
dataType: 'json',
data: JSON ...