代码简化后大概是酱子吧。。。
var html5pdf = require('html5-to-pdf');
html5pdf().from.string('<html><body>aaaaaaaaa烦烦烦</body></html>').to.buffer(function(er, buf){
res.writeHead(200, {
'Content-Type': 'application/pdf;charset=utf8',
'Content-disposition': 'attachment; filename=' + now
});
res.end( buf );
});
1 回复