【发布时间】:2019-03-05 17:29:30
【问题描述】:
拥有这个从 API 端点获取图像的module.exports 文件。然后将 API 结果解析为一个 blob。解析后的 Blob 对象如下所示:
Blob {
[Symbol(type)]: 'image/jpeg',
[Symbol(buffer)]:
<Buffer ff d8 ff db 00 43 00 08 06 06 07 06 05 08 07 07 07 09 09 08 0a 0c 14
0d 0c 0b 0b 0c 19 12 13 0f 14 1d 1a 1f 1e 1d 1a 1c 1c 20 24 2e 27 20 22 2c 23 1c
... > }
这是代码:
// Pre Configuration
const fetch = require('node-fetch')
module.exports = async (req, res, photoKey) => {
let photoUrl = null
const apiURL = "https://media.heartenly.com/stg/CACHE/sc_thumb"
const requestURL = `${apiURL}/${photoKey}`
const response = await fetch(requestURL)
const data = await response.blob()
console.log(data)
}
现在我要做的是返回返回的 blob 的 base64 URL 格式,有什么想法吗?
【问题讨论】:
-
data.toString('base64')?或者data.buffer.toString('base64')- 我不熟悉 nodejs 中的 blob -
@Nezir - 这不是 nodejs
-
不过,它可能更像
const data = await response.buffer(); console.log(data.toString('base64'))- 因为 Blob 缓冲区似乎很难获得
标签: javascript node.js image base64 blob