如果输入为空或不检查Firestore规则以使用节点js

时间:2018-07-25 07:48:58

标签: google-cloud-firestore

service cloud.firestore {
  match /databases/{database}/documents {
    match /cities/{document=**} {
      allow read: if true;
      allow write: if request.resource.data.name != null;
      }
    }
}

  

城市是集合->文档是ID->字段是名称

如果在Firestore规则中检查名称是否为空 如果名称为空,则不插入 如果name不为空,则该值存储在数据库中

0 个答案:

没有答案