这是我要达到的目标,实现Firebase的调整大小的图像扩展,上传图像,然后在调整大小完成后,将dowloadUrl的拇指添加到Cloud Firestore文档中。 question可以帮助我,但仍然无法识别拇指并获得下载URL,这是到目前为止我们一直在尝试的方法。
注意:我将缩略图设置为root / thumbs
const functions = require('firebase-functions');
const { Storage } = require('@google-cloud/storage');
const storage = new Storage();
exports.thumbsUrl = functions.storage.object().onFinalize(async object => {
const fileBucket = object.bucket;
const filePath = object.name;
const contentType = object.contentType;
if (fileBucket && filePath && contentType) {
console.log('Complete data');
if (!contentType.startsWith('thumbs/')) {
console.log('This is not a thumbnails');
return true;
}
console.log('This is a thumbnails');
} else {
console.log('Incomplete data');
return null;
}
});
您需要使用filePath来检查拇指if(filePath.startswith('thumbs/'){...}
contentType具有文件的元数据,例如图像类型等。FilePath将具有完整路径。