3
我使用hapi.js作爲我的api框架,並且我有一個GET路徑下載文件(服務器上的臨時文件)的場景。Hapi.response.File回覆完成
完成下載後,服務器會假設刪除臨時文件。
目前,該文件的下載使用Hapi.response.File
var response = new Hapi.response.File(path);
req.reply(response).header('Content-disposition', 'attachment; filename=' + doc[0].file.name).header('Content-type', mimetype);
有沒有一種簡單的方法來注入一個「的結束」事件的功能呢?