开发者

Sending binary data from browser

开发者 https://www.devze.com 2023-04-11 15:12 出处:网络
I wanted to know what I must do for sending data in binary type from client to server? I am using Chrome 14, and when I send an ArrayBuffer in the client application, I receive a frame with the opcod

I wanted to know what I must do for sending data in binary type from client to server?

I am using Chrome 14, and when I send an ArrayBuffer in the client application, I receive a frame with the opcode set to opText and a string as frame data "[object ArrayBuffer]"` in the s开发者_运维知识库erver application.

What should I do?


You should download the latest nightly build since it has only been implemented in Chrome 16 (currently that's the developer channel). You could also download Chrome Canary.

Currently, in Chrome 14/15, you can only send strings and as such, an ArrayBuffer is converted to a string: someArrayBuffer.toString() === "[object ArrayBuffer]".

It has been implemented in WebKit revision 94482, but Chrome 14 (build 835) only includes up to WebKit revision 91698.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号