Adds the parsed form fields in the form element of the request and
the parsed files to the files element.
See also
Other middleware:
mw_cgi(),
mw_cookie_parser(),
mw_etag(),
mw_json(),
mw_log(),
mw_range_parser(),
mw_raw(),
mw_static(),
mw_text(),
mw_urlencoded()
Examples
app <- new_app()
app$use(mw_multipart())
app
#> <webfakes_app>
#> routes:
#>   use *
#> fields and methods:
#>   all(path, ...)         # add route for *all* HTTP methods
#>   delete(path, ...)      # add route for DELETE
#>   engine(ext, engine)    # add template engine for file extension
#>   head(path, ...)        # add route for HEAD
#>   listen(port)           # start web app on port
#>   patch(path, ...)       # add route for PATCH
#>   post(path, ...)        # add route for POST
#>   put(path, ...)         # add route for PUT
#>   use(...)               # add middleware
#>   locals                 # app-wide shared data
#> # see ?webfakes_app for all methods