如果您只需获取对象中的部分数据,您可以使用范围下载,下载指定范围内的数据,本文介绍如何进行范围下载。
tos:GetObject
权限,详细信息,请参见权限配置指南。tos:GetObjectVersion
权限,详细信息,请参见权限配置指南。以下代码用于指定 Range 下载桶中对象的部分数据。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> <button id="upload">上传</button> <button id="download">下载</button> <input id="file" type="file" /> <!-- 导入 SDK 文件 --> <script src="https://tos-public.volccdn.com/obj/volc-tos-public/@volcengine/tos-sdk@latest/browser/tos.umd.production.min.js"></script> <script type="text/javascript"> const client = new TOS({ // yourRegion 填写 Bucket 所在地域。以华北2(北京)为例,yourRegion 填写为 cn-beijing。 region: yourRegion, // 填写 endpoint 名称。 endpoint: yourEndpoint, // 从 STS 服务获取的临时访问密钥(AccessKey ID 和 AccessKey Secret)。 accessKeyId: yourAccessKey, accessKeySecret: yourSecretKey, // 从 STS 服务获取的安全令牌(SecurityToken)。 stsToken: yourSecurityToken, // 填写 Bucket 名称。 bucket: examplebucket, }); const name = 'exampledir/range.txt'; // 上传文件 const upload = document.getElementById('upload'); upload.addEventListener('click', async () => { // 从输入框获取 file 对象,例如 <input type="file" id="file" />。 const data = document.getElementById('file').files[0]; try { // 分片大小最小为 5MB const partSize = 5 * 1024 * 1024; await client.uploadFile({ key: name, file: data, // 上传时指定分片大小 partSize, }); } catch (e) { console.log(e); } }); const download = document.getElementById('download'); download.addEventListener('click', async () => { try { const result = await client.getObjectV2({ key: name, dataType: 'blob', // 指定下载范围 headers: { Range: 'bytes=0-9' }, }); const blob = result.data.content; // 创建标签。 const link = document.createElement('a'); // 将标签绑定 href 属性。 link.href = window.URL.createObjectURL(blob); // 指定下载后的本地文件名称。 link.download = 'getobjectv2.txt'; // 下载 Object。 link.click(); // 移除绑定的 URL。 window.URL.revokeObjectURL(link.href); } catch (e) { console.log(e); } }); </script> </body> </html>