in in In的Firestore安全规则

发布于 2025-01-24 15:57:35 字数 914 浏览 0 评论 0原文

我正在做一个查询,

firestore().collection('stories')
        .where('published', '==', true)
        .where(firestore.FieldPath.documentId(), 'in', storyIds)
        .get()

我有一个有关故事的规则

match /stories/{storyId} {
      allow read: if resource.data.published == true;
}

如果我的列表中有未发表的故事, 并获得错误 [firestore/termission timed] 。 我在做什么错?

更新

storyIds=["story2","story3"]

firestore文档

story2

story3

I am doing a query

firestore().collection('stories')
        .where('published', '==', true)
        .where(firestore.FieldPath.documentId(), 'in', storyIds)
        .get()

I have a rule for stories

match /stories/{storyId} {
      allow read: if resource.data.published == true;
}

And getting an error [firestore/permission-denied] if there is id of unpublished story in my list.
What am i doing wrong?

UPDATED

storyIds=["story2","story3"]

Firestore Docs

Story2
story2 doc

Story3
story3 doc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自演自醉 2025-01-31 15:57:35

我找到了解决方案。只需在文档中添加我的documentID <代码> id 并更改了查询即可。

firestore().collection('stories')
        .where('published', '==', true)
        .where('id', 'in', storyIds)
        .get()

这现在有效。

I've found solution. Just added my documentId in document as id and changed query.

firestore().collection('stories')
        .where('published', '==', true)
        .where('id', 'in', storyIds)
        .get()

This works now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文