FormData插入额外的TExt

时间:2016-04-14 20:19:57

标签: javascript ajax multipartform-data

我在Javascript中使用表单数据将我的输入发送到服务器,但我发现了一些时髦的东西。在Firefox和Chrome中,它会将额外的文本与数据一起发回,并将其添加到原始值。以下是chrome输出

的示例

------ WebKitFormBoundaryq5GElQTvd3mbU5qE -

这是我的代码。我正在做PUT请求。

var formData = new FormData();
                formData.append('user','tester');
                var req = new XMLHttpRequest();

                req.onload=function(e){
                    console.log(this)
                }

                req.open('PUT','http://localhost/site_template/create_file.php',true);
                req.send(formData);

0 个答案:

没有答案