javascript – XMLHttpRequest multipart / form-data:多部分中的边界无效

前端之家收集整理的这篇文章主要介绍了javascript – XMLHttpRequest multipart / form-data:多部分中的边界无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我通过 XMLHttpRequest发送帖子数据:
var xmlHttp=new XMLHttpRequest();
xmlHttp.open("POST",domain,true);
xmlHttp.setRequestHeader("Content-type","multipart/form-data");
var formData = new FormData();  
formData.append("data",data_json_string);
xmlHttp.send(formData);

在Python中,如果我尝试获取POST(或FILES或任何)数据,我会收到错误

MultiPartParserError: Invalid boundary in multipart: None

这可能永远不会工作?我是否真的需要将表单体创建为单个字符串,我在其中循环参数并在每个参数之前和之后放置一个边界字符串?如果是这样,那应该是什么样的?如何从我的POST中获取它?或者有一种更简单的方法.我环顾四周,对此没有太多了解.

顺便说一句,我正在使用“multipart / form-data”,因为我的字符串数据非常长,这是一种更快的发送方式.当我创建表单并发布它,将其定位到iframe时,它对我有用.但在这里我更喜欢xmlHttp.

解决方法

不要自己设置Content-Type标头.它将在.send()数据时正确设置,包括手动生成的标头缺少的正确生成的边界.

spec明确指出.send(FormData)将使用multipart / form-data编码.

If data is a FormData

Let the request entity body be the result of running the multipart/form-data encoding algorithm with data as form data set and with UTF-8 as the explicit character encoding.

Let mime type be the concatenation of “multipart/form-data;”,a U+0020 SPACE character,“boundary=”,and the multipart/form-data boundary string generated by the multipart/form-data encoding algorithm.

原文链接:https://www.f2er.com/js/158650.html

猜你在找的JavaScript相关文章