FormData |
FormData.append(String name,
boolean value) |
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
|
FormData |
FormData.append(String name,
int value) |
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
|
FormData |
FormData.append(String name,
FilePayload value) |
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
|
FormData |
FormData.append(String name,
String value) |
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
|
FormData |
FormData.append(String name,
Path value) |
Appends a new value onto an existing key inside a FormData object, or adds the key if it does not already exist.
|
static FormData |
FormData.create() |
Creates new instance of FormData.
|
FormData |
FormData.set(String name,
boolean value) |
Sets a field on the form.
|
FormData |
FormData.set(String name,
int value) |
Sets a field on the form.
|
FormData |
FormData.set(String name,
FilePayload value) |
Sets a field on the form.
|
FormData |
FormData.set(String name,
String value) |
Sets a field on the form.
|
FormData |
FormData.set(String name,
Path value) |
Sets a field on the form.
|