function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
cstephenscstephens 

Get only POST paramenters

I'm looking for a method which will receive only POST paramenters.  So far every method I have found seems to receive both GET and POST parameters.... Does a method exist which will only pull the POST params?

 

Thanks

paul-lmipaul-lmi

you basically have to create an actual form, and get each field individually with getter/setting methods.  you can't use getParameters() because it just returns a map of everything with no clear separation.