Object containing all of the HTTP posted parameters from the current request.
| Name | Type | Description |
| is_valid | Boolean | True if there is at least one posted parameter |
| by_name | object | An object whose properties match the posted parameters from the request. If the same parameter has multiple values, they will be included as a list of strings rather than simply as a single string, and when treated as a single string the values will be comma-delimited |
| keys | list | A list containing all of the unique post parameter names |
| count | Integer | The number of unique post parameter names |
| length | Integer | The total number of post parameters, including duplicate parameters |
| * | String | Specific post parameter values may be accessed using {{ request.post_params.parametername }} or {{ request.post_params['parameter-name'] }} |
| output | String | The posted parameters formatted similar to a query parameter string (ie: as if the post request used a content-type of application/x-www-form-urlencoded) |
You may treat the post_params object as a list containing all of the parameters which may be iterated using a {% for %} loop.
The post_params object is copyable using the {% copy_to_dictionary %} method.
Loop Post Parameters
CopyCopy Dictionary
CopyGetting post parameters
CopyCould not log in
{% endunless %}