在 "ondrop" 事件中使用 javascript 将 word 文档转换为文本或字符串
On "ondrop" event convert word document to text or string using javascript
我正在尝试使用 peer.js 将 word 文档从一个用户发送到另一个用户
使用文本文件(.txt,text/plain)很好,在 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)
}
我不是专家,但 AFAIK docx 文档遵循的标准不是简单的纯文本(如 RTF 那样)。我会给 DOCX.js 一个机会,它承诺将 docx base64 字符串来回转换为 HTML.
我正在尝试使用 peer.js 将 word 文档从一个用户发送到另一个用户 使用文本文件(.txt,text/plain)很好,在 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)
}
我不是专家,但 AFAIK docx 文档遵循的标准不是简单的纯文本(如 RTF 那样)。我会给 DOCX.js 一个机会,它承诺将 docx base64 字符串来回转换为 HTML.