如何为空检查设置Firebase规则

时间:2019-06-05 07:53:09

标签: firebase firebase-realtime-database firebase-security-rules

我正在尝试设置一些Firebase代码来检查某些具有空值的节点。不这样做已经给我带来了一些麻烦,我想知道如何解决这个问题!

我尝试了以下代码:

  "rules": {
    "products": {
 // ".validate": "newData.hasChildren(['title', 'description','price',
 //  'category', 'location', 'name', 'date', 
 //    'userID', 'userEmail', 'imagePath', 'imageUrl'])",
 ".indexOn" : ["title","category"],
 },
".read": "auth != null",
".write":"auth!=null"

但这似乎不起作用。

我的数据库具有以下结构:

products 
    |--productID
         |--title
         |--description
         |--price
         |--category

0 个答案:

没有答案