0
私はAPIを使用してCSVファイル内にエクスポートデータ用のAPIを作成しようとしています。つまり、私はfeathersサービスを使用してCSVファイルをダウンロードします。feathers 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();
}]
}
});