File params in request body.
Params in request body.
Applications may override this method to convert to more types.
Applications may override this method to convert to more types.
Params embedded in the path.
Params embedded in the path. Ex: /articles/:id
Params after the question mark of the URL.
Params after the question mark of the URL. Ex: /search?q=xitrum
The whole request body parsed as JSON4S JValue.
Utility to convert requestContentJValue to Scala data structure.
Utility to convert requestContentJValue to Scala data structure. See also SeriDeseri.
Ex:
val map = requestContentJson[Map[String, String]]
The whole request body as String.
The merge of all text params (queryParams, bodyParams, and pathParams), as contrast to file upload (bodyFileParams).
The merge of queryParams and pathParams, things that appear in the request URL.
All core state variables for a request are here. All other variables in Helper and Controller can be inferred from these variables.