Accept GET or POST parameters
To map actions that receive parameters, pass an array of RequestParameter objects via the parameters
key when creating Request object. For example, mapping an action that receives a userId
parameter via GET would look like this:
This action will be triggered when URLs like /user?userId=381
are requested. You can then get the userId
value just like we did above for dynamic paths:
Check out the Security module to learn more about the
securityRules
andfilters
you can configure when mapping actions withparameters
.
See this example working in the Cherrycake documentation examples site.
Last updated