Closed bobf closed 5 months ago
Use request.file("form-field-name") to try to find a multipart-encoded form value for the given name. Returns jetzig.http.File if a match is found which provides content (uploaded file content) and filename (filename as passed by browser).
request.file("form-field-name")
jetzig.http.File
content
filename
Use
request.file("form-field-name")
to try to find a multipart-encoded form value for the given name. Returnsjetzig.http.File
if a match is found which providescontent
(uploaded file content) andfilename
(filename as passed by browser).