A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

FormData

From WHATWG Wiki
Revision as of 11:54, 14 May 2012 by Annevk (talk | contribs) (Created page with 'Ideas around changing the FormData API. * Populate FormData from the server. (multipart/form-data entity -> FormData) * Get and manipulate FormData values. ==Proposal== * void...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Ideas around changing the FormData API.

  • Populate FormData from the server. (multipart/form-data entity -> FormData)
  • Get and manipulate FormData values.

Proposal

  • void append(name, value [, filename]) — normalize Blob [+ filename] to File since it always gets a filename
  • void set(name, value [, filename]) — replaces *all* name entries
  • void remove(name) — removes *all* name entries
  • sequence<DOMString> getNames()
  • sequence<DOMString> getValues(name)