Once I post JSON data to a url in Grails, how can I get access to that data inside of the controller?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Grails automatically parses/unmarshals the JSON and you can access it via
|
|||
|
|
Check out the JSON classes in Grails: http://grails.org/doc/latest/api/org/codehaus/groovy/grails/web/json/package-frame.html For example, here's how I iterate over a list of JSON records in a parameter called 'update':
|
|||||||||
|