我正在尝试使用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());
希望有人可以提供帮助。
答案 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);
}