使用新公司的FireStore,我有一個看起來像這樣的結構:公司的FireStore排序依據(子集合)
{
...
"username": "mr_jones",
"date_created": 1508395138572,
"stats": {
"posts": 143,
...
},
...
}
根據該文件,我可以order and limit我的查詢,以篩選基於一個where
數據條款。我如何根據stats.posts
訂購這些數據?
即
usersRef.orderBy('stats.posts').limit(15);
'usersRef.orderBy('stats.post')。limit(15)'看起來對我來說很合適。當你嘗試時會發生什麼?你有錯誤嗎? –
@MichaelLehenbauer我期待它很像一個mongoDb查詢,但任何時候我使用一個屬性時,它似乎對結果集沒有任何影響 – Felipe