我想从基于Loopback 4的服务器下载文件。我目前的情况是,我可以使用fs.readFileSync访问该文件,但是它仅适用于文本文件。如果我要下载pdf或zip文件,则无法正常工作。
这是我到目前为止所拥有的:
export class FileController
{
constructor(
@repository(FileRepository) public fileRepository: FileRepository
){}
@get('/files/download/{id}')
async download(@param.path.number('id') id: number): Promise<string>
{
const file = await this.fileRepository.findById(id);
const filepath = file.FilePath;
if(!fs.existsSync(filepath))
{
throw new HttpErrors.NotFound(`The File #${id} can not be delivered, because the file is missing.`);
}
else
{
// @todo set headers for content type, length and caching
return fs.readFileSync(filepath,'utf8');
}
}
}
如果我将RestBindings.Http.RESPONSE
注入到构造函数中,则我可以访问响应对象,并且可以使用setHeader
-Method编辑标题,但没有任何影响。
我该怎么做:
答案 0 :(得分:2)
使用this.response.download()
:
return await new Promise((resolve: any, reject: any) => {
// your logic ...
this.response.download(filepath, (err: any) => {
if (err) reject(err);
resolve();
});
});