上传到GCP存储桶的文件提供自定义元数据的正确方式是什么?使用node.js sdk



我一直在努力提供自定义元数据上传文件。下面是代码:

const uploadResponse = await GCS.bucket(bucketName).upload(filePath, {
destination: filedir + filename,
metadata: {
custom1: 'customValue1',
custom2: 'customValue2'
},
});

文件上传工作正常,但自定义元数据属性似乎被忽略了。如有任何提示,欢迎。

对于那些可能偶然发现这一点的人来说,下面是它的工作原理:

const uploadResponse = await GCS.bucket(bucketName).upload(filePath, {
destination: filedir + filename,
metadata: {
metadata: {
custom1: 'customValue1',
custom2: 'customValue2'
}
},
});

相关内容

  • 没有找到相关文章

最新更新