FormData无法发送Javascript

时间:2018-06-24 11:07:02

标签: javascript xmlhttprequest form-data

我正在尝试将简单的表单发送到期望的网站。我在youtube视频上找到了此代码,并且对他有用。这是我第一次使用FormData,我不知道有什么问题。

快照:

网络: enter image description here

控制台:

enter image description here

const data = new FormData();
data.append("name", name);
data.append("email", mail);

const xhr = new XMLHttpRequest;
xhr.open("POST", "correcturlnothingwronghere",true);
xhr.send(data);

2 个答案:

答案 0 :(得分:0)

一段时间以前,我在使用jquery进行项目开发时遇到了同样的问题,如果您对此进行了更改,它将对您有用:

xhr.open("POST", "correcturlnothingwronghere",true);

对此:

xhr.open("POST", "correcturlnothingwronghere",false); 

答案 1 :(得分:0)

在发送之前,您需要设置正确的http标头。

showDetails(null, null, 'CORNEAL CALCIUM CHELATION');