mw_text {webfakes} | R Documentation |
Middleware to parse a plain text body
Description
Adds the parsed object as the text
element of the request object.
Usage
mw_text(default_charset = "utf-8", type = "text/plain")
Arguments
default_charset |
Encoding to set on the text. |
type |
Content type to match before parsing. If it does not match, then the request object is not modified. |
Value
Handler function.
See Also
Other middleware:
mw_cgi()
,
mw_cookie_parser()
,
mw_etag()
,
mw_json()
,
mw_log()
,
mw_multipart()
,
mw_range_parser()
,
mw_raw()
,
mw_static()
,
mw_urlencoded()
Examples
app <- new_app()
app$use(mw_text())
app
[Package webfakes version 1.3.1 Index]