我已经在.docx文件中填充了一些邮件合并字段,现在我希望我的脚本将保存的.docx文件转换为.dotx文件。我正在使用Python 3.6。
fs.createReadStream(values[i], {start: 118})
.pipe(fastCSV())
.pipe(new DataExtender("extraParam1", "extraParam2")) // you set those on "pipe"
.on('data', function(data, myExtraParamter, myOtherParamter) { // you get those on "data"
logger.info(data);
logger.info(myExtraParamter); // --> this won't show undefined anymore.
})
.on('end', function(data) { // BTW: data will be undefined here...
logger.info("Reading all CSV file completed.");
});
在底部是我要进行转换的地方。如您所见,我已经写了一个文件,它现在正坐在一个文件夹中