使用 Fetch API 提交表单数据时,需要考虑两种主要格式:
使用FormData构造请求体时,数据会自动以multipart/form-data格式发送。这是 FormData 的默认行为,无法修改。
要以 application/x-www-form-urlencoded 格式发送数据,您有几个选项:
1。 URL 编码字符串:
fetch("api/xxx", {
body: "[email protected]&password=pw",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
method: "post",
});
2. URLSearchParams 对象:
const data = new URLSearchParams();
data.append("email", "[email protected]");
data.append("password", "mypassword");
fetch("api/xxx", {
body: data,
method: "post",
});
请注意,使用 URLSearchParams 时无需指定 Content-Type 标头,因为它会自动设置正确的内容类型。
3.来自 FormData 的 URLSearchParams:
const data = new URLSearchParams(new FormData(formElement));
fetch("api/xxx", {
body: data,
method: "post",
});
此选项允许您直接传递 FormData 对象来创建 URLSearchParams 对象。但是,它的浏览器支持可能有限,因此请务必在使用之前对其进行彻底测试。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3