2

我需要生成 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 包含错误和不可读的内容,知道吗?感谢您的任何建议。

4

1 回答 1

1

文档

为了能够将正确的国家字符打印到 pdf 中,您需要首先在 html 中设置 utf-8 字符集。

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

游乐场示例在这里

于 2016-01-29T13:05:56.513 回答