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不为空,则该值存储在数据库中