0

我试图使用 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)

                    }
4

1 回答 1

0

我不是专家,但 AFAIK docx 文档遵循的标准不是简单的纯文本(如 RTF 那样)。我会给DOCX.js一个机会,它承诺将 docx base64 字符串来回转换为 HTML。

于 2015-07-02T10:14:37.837 回答