我试图使用 peer.js 将 word 文档从一个用户发送到另一个用户,它可以很好地处理文本文件(.txt、文本/纯文本),而在 word 文档上我没有得到内容。
这是我到目前为止所做的
box.on('drop', function (e) {
e.originalEvent.preventDefault();
var file = e.originalEvent.dataTransfer.files[0];
eachActiveConnection(function (c, $c) {
if (c.label === 'file') {
if (file.type == "text/plain") {
alert("type : " + file.type + " - sendable");
c.send(file);
} else {
//here i need to convert word document into text/plain or atleast to string and send the file by using // c.send(file)
}