请求Blob类型时显示响应错误文本

时间:2018-08-03 09:52:32

标签: php xmlhttprequest

我已经将XMLHttpRequest的'responseType'设置为'blob'到php脚本中,是否可以返回不止一种类型的响应?如果脚本可以成功运行,则以“ contentType / application / zip”响应,但如果脚本失败,则以“ string”(错误文本)响应。我尝试在我的PHP脚本中响应字符串 但是,在我的JavaScript中,我设置了XHR.responseType ='blob'。

在PHP

if(someThingWrong)
{
echo "Archive not found"; //Repsonse is DOMString
header("HTTP/1.1 404 Not Found"); 
exit;
}
else
{
header("Content-type: application/zip"); //Response is octe-Stream or zip
header("Content-Disposition:  attachment; filename=\"" . basename($newZipFile) . "\"" );
readfile($newZipFile);  
}

使用JavaScript

XHR.open("POST", "anycode.php");
XHR.responseType = "blob";

当我尝试访问xhr.ResponseText时,它显示为'undefined'。

    if(XHR.status == 404) 
    {alert(XHR.ResponseText);}

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您可以使用FileReader对象以文本形式获取响应。

if(XHR.status == 404){ 
    var fr = new FileReader();
    fr.onload = function(e){
        alert(e.target.result);
    }
    fr.readAsText(XHR.response);
}