我有一个带有分支的firebase DB,例如:
/Customers/{CustomerID}/{CustomerName}
{CustomerAddress}
/Contacts/{CustomerID}/{contactID}/{ContactName}
{contactPhone}
{contactEmail}
/sampleout/{customerId}/{sampleoutID}/.....
other Data including the customer name, contact etc etc that is kept above.
我正在寻找参考客户和联系信息的最佳方式,而无需:1)在 FB 树中存储两次。2) 进行 2 次或更多次读取调用。
因此,我希望能够读取 /sampleOut 树,当它读取 sampleID 1 并指向给定客户时,它还会获取该客户对象,而不必在我的代码中创建“读取”调用。