FormData
Types
formDataEntryValue
type formDataEntryValue = FormDataEntryValue.tValues
append
let append: (t, ~name: string, ~value: string) => unitappendBlob
let appendBlob: ( t, ~name: string, ~blobValue: Blob.t, ~filename: string=?,) => unitentries
let entries: t => Iterator.t<(string, formDataEntryValue)>get
let get: (t, string) => null<formDataEntryValue>getAll
let getAll: (t, string) => array<formDataEntryValue>keys
let keys: t => Iterator.t<string>make
let make: (~form: 'form=?, ~submitter: 'submitter=?) => tset
let set: (t, ~name: string, ~value: string) => unitsetBlob
let setBlob: ( t, ~name: string, ~blobValue: Blob.t, ~filename: string=?,) => unit