XHR的可移植sendAsBinary
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XHR的可移植sendAsBinary相关的知识,希望对你有一定的参考价值。
Use this to enhance non firefox browsers to support the sendAsBinary method.
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); }
以上是关于XHR的可移植sendAsBinary的主要内容,如果未能解决你的问题,请参考以下文章
出现xhr.sendasbinary is not a function错误
JavaScript XHR的便携式sendAsBinary