firebase的大小调整扩展完成后获取“下载网址”

时间:2019-09-30 17:37:16

标签: javascript firebase google-cloud-functions firebase-storage

这是我要实现的目标,实现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;
    }
});

1 个答案:

答案 0 :(得分:0)

您需要使用filePath来检查拇指 <script src="https://threejs.org/build/three.js"></script>

contentType具有文件的元数据,例如图像类型等。 FilePath将具有完整路径。