我们假设我有一个Buffer对象(PDF文件),如何在响应对象中返回它?
// I am using nestJs framework
@Get(':fileHash')
getFile(@Param('fileHash') fileHash) {
console.log(fileHash);
this.sharingService.get(fileHash).then ( buffer => {
// what to do ?
}
}