interface FormData
extends DomIterable<string, FormDataEntryValue>
Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to "multipart/form-data".
Methods Jump to heading
Jump to headingappend(): voidJump to headingdelete(name: string): voidJump to headingget(name: string): FormDataEntryValue | nullJump to headinggetAll(name: string): FormDataEntryValue[]Jump to headinghas(name: string): booleanJump to headingset(): void