XMLHTTP Post无效

时间:2017-03-07 14:56:18

标签: javascript post get xmlhttprequest arraybuffer

我正在尝试使用XMLHTTP将PDF文件转换为响应,并使用XMLHTTP获取响应。让部分工作得很好但是Post部分没有得到响应。

   var Req = new XMLHttpRequest();
Req.open("POST",'http://192.168.56.103/API/Twebservice.asmx/Updatepdf', false);
Req.onload = function (oEvent) {
  // Uploaded.


var blob = function(){var xhr = new XMLHttpRequest()
 xhr.open("GET", "http://www.pdf995.com/samples/pdf.pdf",true);
 xhr.send();

 if (xhr.status === 200) { 
 var test=xhr.responseText;//console.log(test)

 }} }
//GetPDF();
Req.send(blob());

希望有人可以提供帮助。

1 个答案:

答案 0 :(得分:0)

将呼叫视为异步。在第一次完成后调用第二个。

function firstCall() {
  var xhr = new XMLHttpRequest()
  xhr.open("GET", "path1", true); 
  xhr.onload = function () {
    secondCall(xhr.responseText);
  };
  xhr.onerror = function () {
      console.error("Error", xhr.statusText);
  };
  xhr.send();
}

function secondCall(data) {
  var xhr = new XMLHttpRequest()
  xhr.open("POST", "path2", true);
  xhr.onload = function () {
    console.log("done");    
  };
  xhr.onerror = function () {
      console.error("Error", xhr.statusText);
  };
  xhr.send(data);
}