我用html5-to-pdf去生成pdf,不显示中文,毫无头绪,求破解
发布于 17天前 作者 NuerSir 199 次浏览 来自 问答

代码简化后大概是酱子吧。。。

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 );
});
回到顶部