0
一個位置的所有關鍵假設這個數據結構指數火力地堡
{
rules: {
client: {
.indexOn: ["firstName", "lastName"]
}
}
}
但是,假設我要稍後將email
或gender
字段添加到我的數據中。有沒有辦法編寫一個通配符規則來索引client
的所有字段?我在想這樣的語法:
// this does not work
{
rules: {
client: {
.indexOn: ["*"]
}
}
}
如果它不在文檔中 - 它不存在。所以沒有 –