我一直在努力提供自定义元数据上传文件。下面是代码:
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'
}
},
});