Flutter-无法检索Firebase集合中的文档列表

时间:2019-09-03 03:40:49

标签: firebase flutter google-cloud-firestore

我试图获取Firebase集合中所有文档名称的列表以显示在DropdownButton中,为此我创建了一个自定义小部件_DropdownListWithLabel。我的收藏夹中有两个文档(并且我可以在Firebase控制台中看到两个文档),但是当我尝试以字符串列表的形式检索所有文档的名称时,只显示一个。这是执行此操作的代码段:

StreamBuilder<QuerySnapshot>(
    stream: Firestore.instance
        .collection('collectionName')
        .snapshots(),
    builder: (context, snapshot) {
        print(
            "Number of documents: ${snapshot.data.documents.length}, 
            ${snapshot.data.documents.first.documentID}");
        return _DropdownWithLabel(
            'Label', 
             snapshot.data.documents.map((doc) => doc.documentID).toList());
    }) //StreamBuilder

供参考,print语句显示如下: Number of documents: 1, documentName

为什么此代码不能从该集合中检索两个文档名称?

编辑:这是_DropdownWithLabel小部件。如果我尝试在ListView或带有文本小部件列表的列中列出文档名称,则会得到相同的结果,只显示一个文档名称。

class _DropdownWithLabel extends StatefulWidget {
  final String label;
  final List<String> dropdownItems;
  _DropdownWithLabel(this.label, this.dropdownItems);
  @override
  State<StatefulWidget> createState() =>
      _DropdownWithLabelState(label, dropdownItems);
}

class _DropdownWithLabelState extends State {
  final String label;
  final List<String> dropdownItems;
  String selectedItem;
  _DropdownWithLabelState(this.label, this.dropdownItems) {
    selectedItem = dropdownItems.first;
  }
  @override
  Widget build(BuildContext context) {
    return Row(
      mainAxisAlignment: MainAxisAlignment.spaceBetween,
      children: <Widget>[
        Text(label),
        Container(
          width: 150,
          child: DropdownButton<String>(
              value: selectedItem,
              onChanged: (newValue) {
                setState(() => selectedItem = newValue);
              },
              items: dropdownItems.map((value) {
                return DropdownMenuItem(
                  value: value,
                  child: Text(value),
                );
              }).toList()),
        )
      ],
    );
  }
}

2 个答案:

答案 0 :(得分:0)

代码看起来就像我的一样,正在运行。这取决于您的规则。

错误可能是请求中包含的凭证无法访问其中一个文档。设置正确的权限应该可以解决问题。

答案 1 :(得分:0)

我通过杀死模拟器并重新启动来解决了我的问题。显然是因为某些原因阻止了它正确连接到Firestore。