作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从 firebase 存储加载图像非常慢,在我的网页中显示图像需要超过 2sec
。有没有什么办法可以启动图像加载?当授予对世界的读取访问权限时,它会播种吗:allow read: if true
?
请指导我,从 Firebase 存储上传和下载图像的最佳方式是什么?谢谢。
以下是我的存储规则:
service firebase.storage {
match /b/test-project-faac7.appspot.com/o {
match /{allPaths=**} {
allow read: if request.auth != null;
allow write: if request.auth != null;
}
}
}
获取下载地址的代码:
this.storage.ref(item.imgQuestion).getDownloadURL().then(url => {
item.imgQuestionUrl = url;
})
最佳答案
您可以创建一个cloud-function
,其中可以在上传
后压缩图像并替换原始图像。可以关注这个sample得到一些想法。您将需要监视 storage
上传以触发您的功能。
关于javascript - 如何从 firebase 存储中更快地加载图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45584414/
我是一名优秀的程序员,十分优秀!