XMLHttpRequest Post Data not being sent

后端 未结 2 1002
清歌不尽
清歌不尽 2021-01-18 02:35

This is the javascript:

function eAC(emailData) {
    if (window.XMLHttpRequest) {
        httpRequest = new XMLHttpRequest();
    }

    if (!httpRequest) {         


        
2条回答
  •  半阙折子戏
    2021-01-18 03:17

    Your problem is that with FormData the request is sent as multipart/form-data not application/x-www-form-urlencoded. Remove the line where you set the content type. The correct content type will be set automatically when you pass a FormData object to XMLHttpRequest.send.

提交回复
热议问题