Ajax访问文件获取字节流方法
window.onload = function(){
    	
    	var xhr = new XMLHttpRequest();
    	xhr.open('GET', "http://localhost:8080/myblog/helloworld.pdf");
    	xhr.responseType = 'arraybuffer';
    	xhr.onreadystatechange = function getPdfOnreadystatechange(e) {
    		console.log("xhr.readyState:"+xhr.readyState+"   xhr.status:"+xhr.status);
    	    if (xhr.readyState === 4) {
    	      if (xhr.status === 200) {
    	        var data = (xhr.mozResponseArrayBuffer || xhr.mozResponse ||
    	                    xhr.responseArrayBuffer || xhr.response);
    	        console.log(data);
    	      } else {
    	        console.log("error");
    	      }
    	    }
    	};
    	xhr.send(null);
    } 相关推荐
  kentrl    2020-11-10  
 结束数据方法的参数,该如何定义?-- 集合为自定义实体类中的结合属性,有几个实体类,改变下标就行了。<input id="add" type="button" value="新增visitor&quo
  ajaxyan    2020-11-09  
   zndy0    2020-11-03  
   学留痕    2020-09-20  
   learningever    2020-09-19  
   chongxiaocheng    2020-08-16  
   ajaxhe    2020-08-16  
   lyqdanang    2020-08-16  
   curiousL    2020-08-03  
   时光如瑾雨微凉    2020-07-19  
   坚持着执着    2020-07-16  
   jiaguoquan00    2020-07-07  
   李永毅    2020-07-05  
   坚持着执着    2020-07-05