如何使用铁路由器或流星本身提供文件?

时间:2014-02-04 23:50:44

标签: meteor iron-router

我正在尝试在我的Meteor应用程序上提供一个zip文件但是我被卡住了。经过大量的谷歌搜索似乎最好的方法是与铁路由器,但我不知道如何:

Router.map ->
  @route "data",
    where: 'server'
    path: '/data/:id'
    action: ->
      data = getBase64ZipData(this.params.id)
      this.response.writeHead 200, { 'Content-Type': 'application/zip;base64' }
      ???

1 个答案:

答案 0 :(得分:34)

在服务器上:

var fs = Npm.require('fs');

var fail = function(response) {
  response.statusCode = 404;
  response.end();
};

var dataFile = function() {
  // TODO write a function to translate the id into a file path
  var file = fileFromId(this.params.id);

  // Attempt to read the file size
  var stat = null;
  try {
    stat = fs.statSync(file);
  } catch (_error) {
    return fail(this.response);
  }

  // The hard-coded attachment filename
  var attachmentFilename = 'filename-for-user.zip';

  // Set the headers
  this.response.writeHead(200, {
    'Content-Type': 'application/zip',
    'Content-Disposition': 'attachment; filename=' + attachmentFilename
    'Content-Length': stat.size
  });

  // Pipe the file contents to the response
  fs.createReadStream(file).pipe(this.response);
};

Router.route('/data/:id', dataFile, {where: 'server'});

在客户端:

<a href='/data/123'>download zip</a>

关于这一点的好处是它将文件作为附件下载,您可以自定义用户看到的文件名。诀窍在于编写fileFromId函数。我发现最简单的方法是将所有动态生成的文件存储在/tmp下。

此答案假定文件是动态生成的。如果要提供静态内容,可以将文件放在public目录下。有关详细信息,请参阅this问题。