mw_json: Middleware to parse a JSON body

Description Usage Arguments Value See Also Examples

View source: R/mw-json.R

Description

Adds the parsed object as the json element of the request object.

Usage

1
mw_json(type = "application/json", simplifyVector = FALSE, ...)

Arguments

type

Content type to match before parsing. If it does not match, then the request object is not modified.

simplifyVector

Whether to simplify lists to vectors, passed to jsonlite::fromJSON().

...

Arguments to pass to jsonlite::fromJSON(), that performs the JSON parsing.

Value

Handler function.

See Also

Other middleware: mw_etag(), mw_log(), mw_multipart(), mw_raw(), mw_static(), mw_text(), mw_urlencoded()

Examples

1
2
3
app <- new_app()
app$use(mw_json())
app

presser documentation built on July 1, 2020, 5:49 p.m.