Firebase Cloud函数回调

时间:2018-12-11 13:53:49

标签: node.js firebase google-cloud-storage google-cloud-functions

任务是将后模型的照片上传到Firebase存储,使用Firebase Cloud函数将此照片转换为缩略图,然后将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)
    })
  })

那么,这样做的方法是什么?谢谢!

0 个答案:

没有答案