gpt4 book ai didi

javascript - 将 jsreport 与其他语言一起使用(非英语)

转载 作者:行者123 更新时间:2023-11-30 00:15:01 25 4
gpt4 key购买 nike

我需要生成 PDF 报告,但问题是我无法用波斯语呈现,简单示例:

var http = require('http');
var jsreport = require('jsreport');

http.createServer(function(req, res) {
jsreport.render({
template: {
content: "<h2>سلام</h2>",// means "hello" in persian
engine: 'jsrender',
recipe: 'phantom-pdf'
}
})
.then(function(out) {
out.stream.pipe(res);
}).catch(function(e) {
res.end(e.message);
});

}).listen(3031, '127.0.0.1');

生成的 PDF 包含一些错误且不可读的内容,知道吗?感谢您的任何建议。

最佳答案

来自documentation

To be able to print correct national characters into pdf you need to set utf-8 charset in your html first.

<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body>
سلام
</body>
</html>

Playground 示例 here

关于javascript - 将 jsreport 与其他语言一起使用(非英语),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35080932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com