Mammoth TypeError:无法读取未定义的属性“ split”

时间:2018-07-24 09:59:27

标签: node.js mammoth

我使用npm包将文本提取到docx文档中。

Versione di Node:v10.4.0

代码:

function ExtractDoc(filename) {

   return new Promise( (resolve, reject) => {

    mammoth.extractRawText({path: __dirname + '/../docs/' + filename})
        .then(result => {
             resolve(result.messages);

        })
        .catch(err => {
            reject(err);
        })
        .done()
   });
}

当我在以下位置调用此功能文件时:

(节点:4171)UnhandledPromiseRejectionWarning:TypeError:无法读取未定义的属性“ split”     在Object.findContentType(node_modules / mammoth / lib / docx / content-types-reader.js:42:38)

你能帮我吗? 谢谢。

0 个答案:

没有答案