我有一个功能完备的nodejs代码,在某些用户操作上生成pdf,将pdf通过电子邮件发送给用户并将pdf上传到dropbox。它在localhost上运行得很好,但就像我一样
将我的代码部署到heroku
,我得到一些错误。我发现错误显然是因为pdf生成。我已使用html-pdf从ejs
模板生成pdf。代码如下:
if (req.body.text == "Approved"){
ejs.renderFile('./views/template.ejs', {user: user}, function(err, result) {
if (result) {
var filename = user.number+ ".pdf";
var path = './public/files/'+filename ;
var options = { filename: path, format: 'Legal', orientation: 'portrait', directory: './public/files/',type: "pdf" };
html = result;
pdf.create(html, options).toFile(function(err, res) {
if (err) return console.log(err);
console.log(res);
});
user.path = path;
user.save()
var dbx = new dropbox({ accessToken: mytoken });
fs.readFile( path,function (err, contents) {
if (err) {
console.log('Error: ', err);
}
dbx.filesUpload({ path: "/"+filename ,contents: contents })
.then(function (response) {
console.log("done")
console.log(response);
})
.catch(function (err) {
console.log(err);
});
});
var mailOptions = {
from: '"EMediCare"',
to: user.email, // list of receivers
subject: 'Confirmation: Quote received', // Subject line
attachments : [{
filename: filename,
path : path
}]
};
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
return console.log(error);
}
console.log('Message %s sent: %s', info.messageId, info.response);
});
}
// render or error
else {
res.end('An error occurred');
console.log(err);
}
});
}
else {
user.path = null;
user.save();
}
我的示例template.ejs
是:
<html>
<head>
<title>my pdf </title>
</head>
<body>
<%= user.first_name%>
<span><%= user.last_name%></span>
</body>
当我检查我的登录heroku时,它说它无法打开文件
答案 0 :(得分:0)
在Heroku中,dyno的本地文件存储不是持久的(显然除了git repo文件),所以如果你写一个本地文件并且dyno重新启动文件将会消失,如果你启动另一个dyno它将不会能够“看到”文件。
heroku run bash
启动一个新的“一次性”dyno(可在此处阅读:https://devcenter.heroku.com/articles/one-off-dynos),因此该文件无法以此方式访问。
如果您希望数据持久存在,请更好地使用某些数据库或持久存储插件。
(引自node.js createWriteStream doesn't create new file on Heroku)