作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 officegen npm 模块创建一个 word (docx) 文件并下载它。过去我使用 tempfile 模块创建一个临时路径用于下载目的。这是我为 word 文档下载编写的代码:
var tempfile = require('tempfile');
var officegen = require('officegen');
var docx = officegen('docx');
router.post('/docx', function(req, res){
var tempFilePath = tempfile('.docx');
docx.setDocSubject ( 'testDoc Subject' );
docx.setDocKeywords ( 'keywords' );
docx.setDescription ( 'test description' );
var pObj = docx.createP({align: 'center'});
pObj.addText('Policy Data', {bold: true, underline: true});
docx.on('finalize', function(written) {
console.log('Finish to create Word file.\nTotal bytes created: ' + written + '\n');
});
docx.on('error', function(err) {
console.log(err);
});
docx.generate(tempFilePath).then(function() {
res.sendFile(tempFilePath, function(err){
if(err) {
console.log('---------- error downloading file: ' + err);
}
});
});
});
但是它给了我一个错误提示
TypeError: dest.on is not a function
创建的总字节数也显示为 0。我做错了什么?
最佳答案
router.post('/docx', function(req, res){
var tempFilePath = tempfile('.docx');
docx.setDocSubject ( 'testDoc Subject' );
docx.setDocKeywords ( 'keywords' );
docx.setDescription ( 'test description' );
var pObj = docx.createP({align: 'center'});
pObj.addText('Policy Data', {bold: true, underline: true});
docx.on('finalize', function(written) {
console.log('Finish to create Word file.\nTotal bytes created: ' + written + '\n');
});
docx.on('error', function(err) {
console.log(err);
});
res.writeHead ( 200, {
"Content-Type": "application/vnd.openxmlformats-officedocument.documentml.document",
'Content-disposition': 'attachment; filename=testdoc.docx'
});
docx.generate(res);
});
关于javascript - Node.js 使用 officegen 创建和下载 word 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42243300/
我正在使用officegen 使用nodejs 创建MS-word 文件。到目前为止它工作得很好。我需要将自定义图像添加到表格单元格。但我想出了任何办法。现在我只是使用他们的默认表格示例。 代码: v
我正在使用 officegen 通过 Node.js 创建 docx 文件。我正在添加图像、线条、段落,我遇到的问题是我的 html 具有简单的样式,如粗体文本、列表等。 我尝试使用 Textvers
我想使用 officegen npm 模块创建一个 word (docx) 文件并下载它。过去我使用 tempfile 模块创建一个临时路径用于下载目的。这是我为 word 文档下载编写的代码: va
我是一名优秀的程序员,十分优秀!