Form.DataSourceForm data.
See Brr_io.Form.t.
The type for form data entry values.
of_form f is a form data from the current key-values of form f.
find d k is the first value associated to k in d (if any).
find_all d k are all the values associated to k in d.
fold f d acc folds over all key/value entries in d with f starting with k.
set d k b ~filename sets the value of k to b in d. filename can specify the filename of b.
append d k v appends value v to the value of k in d.
append d k b ~filename appends blob b to the value of k in d. filename can specify the filename of b.
of_assoc l is form data from assoc l, data is appended.
to_assoc l is the form data as an association list.
of_uri_params p is a form data for p.
to_uri_params t is the form data as URI query parameters.
Note. If your form has file inputs this will map their keys to something like "[Object File]", has_file_entry indicates whether the form data has a file entry.