下面是pdf缓冲区。我想把缓冲区转换成pdf文件。
data = {
"file": {
"type": "Buffer",
"data": [
102,
24,
62
]
},
}
res.send( data );
您可以使用res.sendFile并使用标头发送一些数据。
// res.sendFile(path [, options] [, fn])
let options = {
headers: {
'TheDataYouWantToSend': Date.now() // for example a timestamp
}
}
req.sendFile(absolutePathToFile, options)
我希望这能帮助