获取gs://example.appspot.com/images net :: ERR_UNKNOWN_URL_SCHEME

时间:2016-06-28 07:53:56

标签: angularjs cordova ionic-framework firebase firebase-storage

我最近收到此错误消息,我想知道为什么。

  

GET gs://example.appspot.com/images net :: ERR_UNKNOWN_URL_SCHEME

以下是我对存储服务的引用:

var storage = firebase.storage();

var storageRef = storage.ref();

var storageRefImgs = storageRef.child('images');

我有谷歌Chrome 51,我正在运行Windows 10。

1 个答案:

答案 0 :(得分:2)

您似乎将gs://网址(内部Google存储参考)放入无法处理的控件中(例如img标记)。

如果您想在img标记中使用该文件,则必须get the download URL获取该文件。来自文档:

storageRef.child('images/stars.jpg').getDownloadURL().then(function(url) {
  // Get the download URL for 'images/stars.jpg'
  // This can be inserted into an <img> tag
  // This can also be downloaded directly
}).catch(function(error) {
  // Handle any errors
});