我用html5-to-pdf去生成pdf,不显示中文,毫无头绪,求破解
发布于 10 年前 作者 NuerSir 5350 次浏览 最后一次编辑是 8 年前 来自 问答

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

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