Flutter Firestore使用地图的where子句

时间:2019-01-02 19:56:48

标签: firebase flutter google-cloud-firestore

发布新活动后,我将新的发布文档添加到集合中。 在此文档中,我有一张地图,用户可以在其中向事件添加确认以将其标记为true并添加自己的ID。

Firestore Screen

var snap = await Firestore.instance
        .collection('user_posts')        
        .where("confirmations.${user.id}",isEqualTo: true)
        .getDocuments();

使用此代码段,我可以获得用户确认的所有帖子。这里的问题是要获得此索引,就需要执行该查询。而且该索引不能是通用的。我无法为每个用户创建索引。

关于如何获得它的一些想法?

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要将confirmations字段转换为数组,并使用(相对较新的)array-containsarrayUnion操作。

具有类似数组的等效查询将变为:

var snap = await Firestore.instance
    .collection('user_posts')        
    .where("confirmations", arrayContains: user.id)
    .getDocuments();

这样,您只需要在confirmations上创建一个索引,该索引就会自动添加。

有关这些的更多信息,请参见: