任务是将post模型的照片上传到Firebase存储,使用Firebase云函数将照片转换为缩略图,然后应用thumbnailRef.getDownloadURL()发布模型。一切都很好,但是当我打电话的时候thumbnailRef.getDownloadURL()仓库里好像没有肚子。
storageRef.child(photoName).put(photoData) .then(() => { storageRef.child(thumbName).getDownloadURL().then(url => { // No url here but I need to apply model.setPhoto(url) }) })
那么有什么方法可以做到这一点呢?谢谢您!