为什么验证规则与onDisconnect更新的行为不同(仅限)?

时间:2017-04-20 13:51:34

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

我已经使用firebase进行了一些测试,并且在规则中使用onDisconnect().update()看到update()与简单newData.parent()之间的规则验证存在差异。

当我使用update()时,它有效。但是onDisonnect().update()我有PERMISSION_DENIED!

数据库规则:

{
    "rules": {
        "$id": {
            ".read": true,
            ".write": true,
            "a": { ".validate": true },
            "b": { ".validate": "newData.parent().child('a').val() == 'a'" },
        }
    }
}

使用Javascript:

const valid = {
  a: 'a',
  b: 'b'
};

function update(obj) {
  console.log('update', obj);
  return ref.update(obj);
}

function onDisconnectUpdate(obj) {
  console.log('onDisconnectUpdate', obj);
  return ref.onDisconnect().update(obj);
}

update(valid);
onDisconnectUpdate(valid);

Full example code

See a screenshot here

我希望你能帮助我。

1 个答案:

答案 0 :(得分:0)

firebaser here

onDisconnect()操作期间,当我们验证规则时,每个属性都被视为单独的写操作。这意味着在您的情况下操作失败。虽然这是一个不幸的设计,但在不久的将来不太可能改变。因此,我建议在onDisconnect()处理程序中使用更简单的写操作。