gpt4 book ai didi

javascript - fs.readFileSync 错误

转载 作者:太空宇宙 更新时间:2023-11-04 00:34:02 26 4
gpt4 key购买 nike

我正在尝试使用 html-pdf Node 模块从 html 生成 pdf。我目前正在使用 cloud9 IDE 运行它。

我的代码是:

var fs = require("fs");
var pdf = require('html-pdf');
var html = fs.readFileSync('./test.html', {encoding: 'utf8'});
var options = { format: 'Letter' };

app.post('/pdf',function(req, res) {

pdf.create(html, options).toFile('./businesscard.pdf', function(err, res) {
if (err) return console.log(err);
console.log(res); // { filename: '/app/businesscard.pdf' }
});
});

我收到以下错误:

[Error: Fontconfig warning: ignoring C.UTF-8: not a valid language tag]

有谁知道我该如何解决这个问题?

最佳答案

This is due to a bug in fontconfig. You can see here

打开终端并执行locale -a,您将看到字体列表。然后选择它,例如 LC_ALL=C

希望能帮到你

关于javascript - fs.readFileSync 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39892184/

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