0
我想使用hapi創建文件下載API。 沒有使用res.download()
,如何使用reply()
?使用hapi從NodeJS服務器下載文件
我想使用hapi創建文件下載API。 沒有使用res.download()
,如何使用reply()
?使用hapi從NodeJS服務器下載文件
你需要做一個緩衝區,然後設置的答覆
let buf = new Buffer(xls, 'binary');
return reply(buf)
.encoding('binary')
.type('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')
.header('content-disposition', `attachment; filename=test-${new Date().toISOString()}.xlsx;`);
頭和編碼