1

如何html-docx-jsnode.js.

我已经为此参考了 npm 站点(https://www.npmjs.com/package/html-docx-js)。下面是代码

var converted = htmlDocx.asBlob(content);
saveAs(converted, 'test.docx');

但这里有问题,saveAs教程中缺少该功能。

我已经filesaver.js在客户端下载了我已经实现了这个并且它工作正常。但我想要node.js运行完整的代码,它将转换我的 html 内容并在客户端机器中下载一个 word 文件。

期待一些帮助。问候,

比克拉姆纳亚克。

4

1 回答 1

0
    var HtmlDocx = require('html-docx-js');
    var fs = require('fs');
    var html = 'fasfasfasdfsfsdfsf';

    var docx = HtmlDocx.asBlob(html);
    fs.writeFile('helloworld3.docx',docx, function (err){
       if (err) return console.log(err);
       console.log('done');
    });
于 2018-01-04T07:58:21.673 回答