firebase3 存储 url 是否随时间或位置变化
Does firebase3 storage url changes with time or location
我想知道是否可以将我从存储中获取的 url 保存到我的数据库中,并在每次我需要图像时检索 link?现在,每次我需要获取图像时我都会调用以下函数并且速度很慢。我只是担心 link 可能会根据用户所在的位置和时间而改变?
storage.ref(thisEvent.eventImgInReference).getDownloadURL().then(function (url) {
//here I just add the image url
thisEvent.eventImgLink=url;
//
$scope.$apply();
}).catch(function (error) {
});
仅当您在 Firebase 控制台中撤销下载令牌时,下载 URL 才会更改,因此将它们存储在数据库中完全没问题。
我想知道是否可以将我从存储中获取的 url 保存到我的数据库中,并在每次我需要图像时检索 link?现在,每次我需要获取图像时我都会调用以下函数并且速度很慢。我只是担心 link 可能会根据用户所在的位置和时间而改变?
storage.ref(thisEvent.eventImgInReference).getDownloadURL().then(function (url) {
//here I just add the image url
thisEvent.eventImgLink=url;
//
$scope.$apply();
}).catch(function (error) {
});
仅当您在 Firebase 控制台中撤销下载令牌时,下载 URL 才会更改,因此将它们存储在数据库中完全没问题。