如何在羽毛api中编写和下载csv文件?

问题描述 投票:0回答:1

我正在尝试使用api在csv文件中为导出数据创建api,这意味着我想使用羽毛服务下载csv文件。

app.service('/csv').hooks({
  before: {
    create: [ function(hook, next) {
        const dataToStore = [
          {
            to: 'marshall',
            from: 'marshall',
            body: 'Stop talking to that rubber ducky!'
          }, {
            to: 'marshall',
            from: 'marshall',
            body: `...unless you're rubber duck debugging.`
          }
        ]
        hook.data = dataToStore;
        next();
      }
    ]
  },
  after: {
    create: [ function(hook,next){
        // here i need imported data to be write in csv and make api side as downloadable 
        // when i hit the service i want to download file in csv file format.
        hook.result.code = 200; 
        next();
      }
    ]
  },
  error: {
    create: [function(hook, next){
      hook.error.errors = { code : hook.error.code };
      hook.error.code = 200;
      next();
    }]
  }
});
javascript node.js csv export-to-csv feathersjs
1个回答
2
投票

格式化响应不是在钩子中完成,而是在Express中间件中使用general custom formatterservice specific middleware

在注册/csv服务时将其添加到最后(服务调用数据将在res.data中):

const json2csv = require('json2csv');
const fields = [ 'to', 'from', 'body' ];

app.use('/csv', createService(), function(req, res) {
  const result = res.data;
  const data = result.data; // will be either `result` as an array or `data` if it is paginated
  const csv = json2csv({ data, fields });

  res.type('csv');
  res.end(csv);
});
© www.soinside.com 2019 - 2024. All rights reserved.