我是 Vue 和 Firebase 的新手。我成功将图像上传到 Firebase 存储。但无法显示图像。在这里我附上我的代码。如果你能给我任何其他显示图像的解决方案。那也会很棒。
模板
<tr v-for="service in services" v-bind:key="service['.key']">
<img :src="getImgUrl(service.fileName)" width="50px">
<td>{{service.service}}</td>
<td>${{service.price}}</td>
</tr>
脚本
firebase: {
services: serviceRef
},
methods:{
getImgUrl(img){
var imgUrl = firebase.storage().ref('service_images/'+ img).getDownloadURL();
return imgUrl;
}
}