2

我有一个要从本地文件系统提供的文件。但是,该文件不是根据命名约定命名的。相反,我在其他地方(在我的数据库中)存储了一些关于该特定文件的元数据。我想做的是说类似

reply.file(req.pre.item.actual_filename,
  {
    filename: req.pre.item.user_filename,
    mode: 'inline',
    'content-type': req.pre.item.mime_type
  });

无论我多么努力地说服它,hapijs 似乎只是一直在说“八位字节流”。我可以将所有文件存储在本地系统中并带有扩展名,但这并不是我真正想要做的。我宁愿使用正确的文件类型进行 hapi 回复。

4

3 回答 3

3

似乎最简单的事情是不使用reply.file,而是自己打开流并回复它,因此:

serveItem: (req, reply)->
  out = fs.createReadStream path.resolve(tmpFolder, req.pre.item.get('real_filename'))
  reply(out).type(req.pre.item.get('mime_type'))
于 2014-09-17T22:21:59.023 回答
3

我认为这是hapi中的一个错误。以下应该有效:

reply.file(req.pre.item.actual_filename,
{
  filename: req.pre.item.user_filename,
  mode: 'inline'
}).type(req.pre.item.mime_type);

我提交了一个拉取请求来解决这个问题(#1956)。当拉取请求被接受并发布时,将更新此答案。

编辑:更改已被接受,它将在 6.9.0 版本中。

编辑 2: Hapi 6.9.0 已发布,其中包含此更改。

于 2014-09-18T12:14:51.013 回答
2

reply(content).header('Content-Type', contentType).header("Content-Disposition", "attachment; filename=" + file);

contentType可以是以下之一:

case "pdf":
    contentType = 'application/pdf';
    break;
case "ppt":
    contentType = 'application/vnd.ms-powerpoint';
    break;
case "pptx":
    contentType = 'application/vnd.openxmlformats-officedocument.preplyentationml.preplyentation';
    break;
case "xls":
    contentType = 'application/vnd.ms-excel';
    break;
case "xlsx":
    contentType = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
    break;
case "doc":
    contentType = 'application/msword';
    break;
case "docx":
    contentType = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
    break;
case "csv":
    contentType = 'application/octet-stream';
    break;
于 2015-02-22T20:07:42.117 回答