我正在尝试使用 getObject 函数从我的 AWS S3 存储桶中获取一个对象,但是,它似乎返回一个 Uint8Array - 这是an array of 8-bit unsigned integers
. 我不知道如何将其转换回我存储在 S3 存储桶中的对象。
有人知道怎么做这个吗?
谢谢。
编辑:
该对象看起来像这样:
awsServices.getObject(core.splitUrlOff(key)).then(object => ({
key: object.key,
description: object.description,
likes: object.likes,
location: object.location,
time: object.time,
uuids: object.uuids,
views: object.views
}))