Questions with Tags: post

How do I get at posted form data?

I have a form that posts some values to a controller action. How do get at the form values in my cont...

2 answers

  • 1

Tips with Tags: post

is it GET or POST?

request.post? (available in context) return true if the request method is POST. :)

Getting Post values as a method argument.

You can use def foo(apple) @out and `http::/url.com/foo/echo` will echo `echo` to the screen. Ho...

  • 1