出现xhr.sendasbinary is not a function错误
Posted web小菜鸟ing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了出现xhr.sendasbinary is not a function错误相关的知识,希望对你有一定的参考价值。
在使用ajax上传文件的时候,会出现
xhr.sendasbinary is not a function错误
进入到xhr.js里面看,果然没有这个方法
修改前的代码如下所示
function uploadAndSubmit()
var form = document.forms["demoForm"];
if (form["file"].files.length > 0)
// 寻找表单域中的 <input type="file" ... /> 标签
var file = form["file"].files[0];
// try sending
var reader = new FileReader();
reader.onloadstart = function()
// 这个事件在读取开始时触发
console.log("onloadstart");
document.getElementById("bytesTotal").textContent = file.size;
;
reader.onprogress = function(p)
// 这个事件在读取进行中定时触发
console.log("onprogress");
document.getElementById("bytesRead").textContent = p.loaded;
;
reader.onload = function()
// 这个事件在读取成功结束后触发
console.log("load complete");
;
reader.onloadend = function()
// 这个事件在读取结束后,无论成功或者失败都会触发
if (reader.error)
console.log(reader.error);
else
document.getElementById("bytesRead").textContent = file.size;
// 构造 XMLHttpRequest 对象,发送文件 Binary 数据
var xhr = new XMLHttpRequest();
xhr.open(/* method */ "POST",
/* target url */ "upload.jsp?fileName=" + file.name
/*, async, default to true */);
xhr.overrideMimeType("application/octet-stream");
xhr.sendAsBinary(reader.result);
xhr.onreadystatechange = function()
if (xhr.readyState == 4)
if (xhr.status == 200)
console.log("upload complete");
console.log("response: " + xhr.responseText);
;
;
reader.readAsBinaryString(file);
else
alert ("Please choose a file.");
这里手工加上下面这段代码即可
if(!XMLHttpRequest.prototype.sendAsBinary)
XMLHttpRequest.prototype.sendAsBinary = function(datastr)
function byteValue(x)
return x.charCodeAt(0) & 0xff;
var ords = Array.prototype.map.call(datastr, byteValue);
var ui8a = new Uint8Array(ords);
this.send(ui8a.buffer);
;
然后就可以成功传到conrtoller辣
以上是关于出现xhr.sendasbinary is not a function错误的主要内容,如果未能解决你的问题,请参考以下文章
nodejs出现require is not defined和__dirname is not define 错误
SSH框架中hibernate 出现 user is not mapped 问题
Hibernate 中出现 users is not mapped 问题
为啥会出现这个问题 encodeURL is not defined