我得到以下
错误.
Uncaught Error: INVALID_STATE_ERR: DOM Exception 11
以下是我收到错误RUN TIME的代码.
xhttp.setRequestHeader("Content-type","application/xhtml+xml");<br>
xhttp.open("POST",xmlFile,true);<br>
xhttp.send(postData);
我在xhttp.open的第三个参数中尝试使用false.
有谁能告诉我这是什么原因?
错误来自执行顺序:
xhttp.open("POST",true);
xhttp.setRequestHeader("Content-type","application/xhtml+xml");
xhttp.send(postData);
您必须首先打开连接,然后设置请求头,否则您将收到错误.
原文链接:https://www.f2er.com/js/154472.html