在新创建的文档上使用Get()时,Firestore规则失败

Eri*_*son 3 javascript firebase angular google-cloud-firestore

在新创建的文档上对Firestore规则使用get()会导致返回值为false.如果您等待几秒钟并点击在同一个新文档上调用get()的安全规则,则get()将返回预期值.我在规则和/或代码中遗漏了什么,或者这是Firestore的错误?

service cloud.firestore {
  match /databases/{database}/documents {

    match /budgets/{budgetId} {

      allow read: if resource.data.userId == request.auth.uid;
      allow create: if request.auth.uid == request.resource.data.userId;

      match /accounts/{accountId} {
        allow read, create, update: if userOwnsBudget();  // <--- failing for newly created budget documents
      }

      function userOwnsBudget() {
        return get(/databases/$(database)/documents/budgets/$(budgetId)).data.userId == request.auth.uid;
      }
    }
  }
}
Run Code Online (Sandbox Code Playgroud)
const data: Budget = {
    userId: userId,
    budgetName: budgetName,
    currencyType: currencyType
};

try {
    const newBudget = await this.afs.collection<Budget>('budgets').add(data);

    const accountsCollection: AngularFirestoreCollection<BudgetAccount> = this.afs.collection<BudgetAccount>('budgets/' + newBudget.id + '/accounts');

    //Insufficient permission, but occasionally succeeds 
    accountsCollection.valueChanges().subscribe(accounts => {
        console.log(accounts);
    });

    setTimeout(() => {
        accountsCollection.valueChanges().subscribe(accounts => {
            console.log(accounts)
        });
    }, someArbitaryTime) // Typically waiting 5 seconds is enough, but occasionally that will still fail 

} catch(error) {
    console.error(error);
}
Run Code Online (Sandbox Code Playgroud)

Mic*_*uer 6

编辑:此错误已得到解决.

遗憾的是,这是目前已知的问题.我们正在努力修复,一旦解决就会在这里更新.谢谢,抱歉!