我正在尝试将简单的表单发送到期望的网站。我在youtube视频上找到了此代码,并且对他有用。这是我第一次使用FormData,我不知道有什么问题。
快照:
控制台:
const data = new FormData();
data.append("name", name);
data.append("email", mail);
const xhr = new XMLHttpRequest;
xhr.open("POST", "correcturlnothingwronghere",true);
xhr.send(data);
答案 0 :(得分:0)
一段时间以前,我在使用jquery进行项目开发时遇到了同样的问题,如果您对此进行了更改,它将对您有用:
xhr.open("POST", "correcturlnothingwronghere",true);
对此:
xhr.open("POST", "correcturlnothingwronghere",false);
答案 1 :(得分:0)
在发送之前,您需要设置正确的http标头。
showDetails(null, null, 'CORNEAL CALCIUM CHELATION');