XHR的可移植sendAsBinary

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XHR的可移植sendAsBinary相关的知识,希望对你有一定的参考价值。

Use this to enhance non firefox browsers to support the sendAsBinary method.
  1. XMLHttpRequest.prototype.sendAsBinary = function(datastr) {
  2. function byteValue(x) {
  3. return x.charCodeAt(0) & 0xff;
  4. }
  5. var ords = Array.prototype.map.call(datastr, byteValue);
  6. var ui8a = new Uint8Array(ords);
  7. this.send(ui8a.buffer);
  8. }

以上是关于XHR的可移植sendAsBinary的主要内容,如果未能解决你的问题,请参考以下文章

出现xhr.sendasbinary is not a function错误

JavaScript XHR的便携式sendAsBinary

使用 wmemset() 的代码的可移植性如何?

代码的可移植可复用性

MySql SQL 脚本的可移植性,MySql 可以执行的注释代码

MySql SQL 脚本的可移植性,MySql 可以执行的注释代码