Cloud Firestore安全规则:如何检查属性是否存在?

时间:2019-06-26 18:07:43

标签: firebase google-cloud-firestore firebase-security-rules

我需要检查存储的文档中是否存在属性。 allow update, delete: if resource.data.uid; 在上面的代码中,我有错误“属性uid在对象上未定义。”,因此我如何检查数据中的uid

1 个答案:

答案 0 :(得分:0)

要检查文档是否包含特定字段,我使用in

allow update, delete: if 'uid' in resource.data;