-
Notifications
You must be signed in to change notification settings - Fork 6
Form Data
Yuki Takei edited this page Oct 10, 2016
·
1 revision
Can get parsed form data throgh the req.formData when content-type is application/x-www-form-urlencoded.
request.formData returns URLEncodedForm
app.use(BodyParser.URLEncoded())
app.use { request, _, _ in
request.formData?["foo"]
}