new formdata().append
时间: 2023-10-21 12:17:26 浏览: 83
The `new FormData().append()` method is used to add a new key-value pair to a FormData object. The key represents the name of the form field and the value represents the data to be sent to the server.
Syntax:
```
formData.append(name, value);
```
Example:
```
let formData = new FormData();
formData.append('username', 'John');
formData.append('password', '1234');
// This will send the formData object to the server with the following data:
// username=John&password=1234
```
相关问题
new FormData document.getElementById formData.append 没有数据
回答: 如果在使用`new FormData()`时没有数据,那么创建的`FormData`对象将是空的。`new FormData()`是用于创建一个新的`FormData`对象的构造函数。可以通过`document.getElementById`方法获取到HTML中的表单元素,然后将其传递给`FormData`构造函数来创建一个包含表单值的`FormData`对象。例如,可以使用以下代码创建一个包含表单数据的`FormData`对象:
```
var form = document.getElementById("form");
var formData = new FormData(form);
```
在这个例子中,`form`是一个HTML中的`<form>`表单元素,`formData`是一个包含表单值的`FormData`对象。可以使用`formData.append`方法向`FormData`对象中添加额外的数据。
#### 引用[.reference_title]
- *1* *2* *3* [JavaScript系列之 FormData 的简单使用](https://blog.csdn.net/weixin_62277266/article/details/127719654)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
formData.append
formData.append() 是一个 JavaScript API,用于将数据添加到 FormData 对象中。它通常用于在发送 AJAX 请求时,通过 HTTP POST 方法将表单数据发送到服务器。该方法接受两个参数,第一个参数是要添加的数据的名称,第二个参数是要添加的数据的值。例如,以下代码将添加一个名为 "username" 的数据项,其值为 "John":
```
let formData = new FormData();
formData.append("username", "John");
```
阅读全文