使用WebRTC数据流发送Blob数据

时间:2017-06-29 20:41:57

标签: javascript webrtc

我正在阅读以下内容:

https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Simple_RTCDataChannel_sample

在此示例中,他们通过数据通道发送简单字符串:

var message = messageInputBox.value;
sendChannel.send(message);

我正在尝试发送blob:

enter image description here

但是在接收连接上,我没有数据:

enter image description here

为什么会这样?如何正确序列化Blob并通过RTCDataConnection发送?我的目标浏览器仅限最新的Chrome,以防万一。

0 个答案:

没有答案