Javascript:获取所有表单键和值并将它们组合为 javascript 对象以与 XHR 2 FormData 一起使用
我使用这个小片段来获取表单值:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将表单对象设置为 FormData 参数:
注意:它也适用于
input type="file"
Just set the form object as the FormData parameter:
Note: it also works with
input type="file"
您可以做的是将所有信息存储在一个数组中并动态附加它们。
现在在您的发送中,您可以将数据作为参数传递并附加所有数据:
What you can do is, store all the information in an array and append them dynamically.
now in your send for you can pass the data as argument and append all the data: