Grails 1.3.1
I am using a jQuery library that sends a serialized parameter map to the server and it is formatted like so....
item[]=1&item[]=2&item[]=3
In my controller, when I do println params, it comes out...
[item[]: [1, 2, 3]]
I can't seem to get this data out of params in my controller, however. What am I missing?