首页 > 解决方案 > Cloud Firestore whereIn 不返回提到的数据文档

问题描述

我正在使用文档中提到的数据库,并在 Flutter 中使用查询:

collection.where('regions', whereIn: [['west_coast', 'east_coast']]);

文档说:

从示例数据中,只有 DC 文档符合其区域字段 ["east_coast"]

但我的查询没有返回任何内容。其余查询按预期工作,但不是这个。我做错了什么吗?

标签: firebasefluttergoogle-cloud-firestore

解决方案


推荐阅读