gpt4 book ai didi

Firebase 3存储不允许文件更新/覆盖

转载 作者:行者123 更新时间:2023-12-04 23:16:50 24 4
gpt4 key购买 nike

是否有用于Firebase 3存储的方法/规则来禁用文件更新或覆盖?

我为数据库找到了data.exists(),但没有为存储找到解决方案。

最佳答案

TL; DR:在Storage Security Rules中,request.resource〜= newData.val()resource〜= data.val(),因此您可以类似地使用它们。

service firebase.storage {
match /b/<bucket>/o {
match /path/to/file {
allow write: if resource == null; // if !data.exists() in DB land
}
}
}

关于Firebase 3存储不允许文件更新/覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38995011/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com