在 Safari 中发送请求时 FormData 对象未捕获值
我有一些代码:
var formData = new FormData(eForm);
var xhr=GetXMLHttpRequest();
xhr.open('POST', surlAjax,false);
xhr.send(formData);
当我在 chrome 中查看请求有效负载时,我看到:
请求有效负载
------WebKitFormBoundary2Sol1RjAh9VTx3uj 内容处置:表单数据;名称=“答案”
1 ------WebKitFormBoundary2Sol1RjAh9VTx3uj 内容处置:表单数据;名称=“idSlide”
11 ------WebKitFormBoundary2Sol1RjAh9VTx3uj 内容处置:表单数据;名称=“sEnduser”
ceff69eabdcd494de62b110c0c7231aa ------WebKitFormBoundary2Sol1RjAh9VTx3uj--
当我在 Safari 中查看请求有效负载时,我看到:
请求有效负载
------WebKitFormBoundary3rBEoL5qcra4nVCd--
eForm 对象是 FormData 构造函数所需的 HTMLFormElement 对象。
知道为什么 safari 和 chrome 中的请求有效负载会有所不同吗?
I have some code:
var formData = new FormData(eForm);
var xhr=GetXMLHttpRequest();
xhr.open('POST', surlAjax,false);
xhr.send(formData);
When I view the request payload in chrome I see:
Request Payload
------WebKitFormBoundary2Sol1RjAh9VTx3uj
Content-Disposition: form-data; name="answer"
1
------WebKitFormBoundary2Sol1RjAh9VTx3uj
Content-Disposition: form-data; name="idSlide"
11
------WebKitFormBoundary2Sol1RjAh9VTx3uj
Content-Disposition: form-data; name="sEnduser"
ceff69eabdcd494de62b110c0c7231aa
------WebKitFormBoundary2Sol1RjAh9VTx3uj--
When I view the request Payload in Safari I see:
Request Payload
------WebKitFormBoundary3rBEoL5qcra4nVCd--
The eForm object is an HTMLFormElement object which is required by the constructor of FormData.
Any ideas why the request payload would be different in safari vs chrome?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在 5.0.5 上重现了它...看起来这是 FormData 构造函数的问题 - 它没有添加表单中的所有值,但 .append() 工作得很好。
I've reproduced it on 5.0.5 here... looks like it's a problem with the FormData constructor - it doesn't add all the values in the form, but .append() works just fine.