Javascript:获取所有表单键和值并将它们组合为 javascript 对象以与 XHR 2 FormData 一起使用

发布于 2024-11-18 02:13:15 字数 469 浏览 0 评论 0原文

我使用这个小片段来获取表单值:

myForm = document.forms[1];
email = myForm.elements['email']; 

但是,如果我打算将其与 XHR 2 的 FormData 一起使用,我必须这样做:

function sendForm() {
  var formData = new FormData();
  formData.append('email', email);

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };

  xhr.send(formData);
}

有没有办法将所有表单数据作为一个 javascript 对象获取,以便我可以使用 FormData?

I use this little snippet to get form values:

myForm = document.forms[1];
email = myForm.elements['email']; 

however, if I plan to use this with XHR 2's FormData, I have to do this:

function sendForm() {
  var formData = new FormData();
  formData.append('email', email);

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };

  xhr.send(formData);
}

is there any way to get all form data as one javascript object with which I can use FormData with?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彼岸花似海 2024-11-25 02:13:15

只需将表单对象设置为 FormData 参数:

function sendForm() {
  var myForm = document.forms[1];
  var formData = new FormData(myForm);

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };
  xhr.send(formData);
}

注意:它也适用于 input type="file"

Just set the form object as the FormData parameter:

function sendForm() {
  var myForm = document.forms[1];
  var formData = new FormData(myForm);

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };
  xhr.send(formData);
}

Note: it also works with input type="file"

向地狱狂奔 2024-11-25 02:13:15

您可以做的是将所有信息存储在一个数组中并动态附加它们。

var myForm = document.forms[1];
var data = {};
data["email"] = myForm.elements["email"];
data["username"] = myForm.elements["username"];
data["password"] = myForm.elements["password"];
//  ... and so on...

现在在您的发送中,您可以将数据作为参数传递并附加所有数据:

function sendForm(data) {
  var formData = new FormData();

  for(var i in data) {
    formData.append(i,data[i]);
  }

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };

  xhr.send(formData);
}

What you can do is, store all the information in an array and append them dynamically.

var myForm = document.forms[1];
var data = {};
data["email"] = myForm.elements["email"];
data["username"] = myForm.elements["username"];
data["password"] = myForm.elements["password"];
//  ... and so on...

now in your send for you can pass the data as argument and append all the data:

function sendForm(data) {
  var formData = new FormData();

  for(var i in data) {
    formData.append(i,data[i]);
  }

  var xhr = new XMLHttpRequest();
  xhr.open('POST', '/server', true);
  xhr.onload = function(e) { ... };

  xhr.send(formData);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文