gpt4 book ai didi

flutter - 列表包含 'Future' 的实例

转载 作者:IT王子 更新时间:2023-10-29 07:15:13 27 4
gpt4 key购买 nike

我有这段代码试图使用 GeoFlutterFire 从 Firestore 查询一些数据,但为了效率起见,我只想获取一次 ID 列表,然后使用它从 Firebase 数据库中获取其余数据。这是有问题的代码:

class _StartScreenState extends State<StartScreen> {

List ids = ['abc'];
@override
void initState() {
super.initState();
print('ids ${ids}');
}

_initState() async {
Firestore _firestore = Firestore.instance;
List ids1 = [];

Geoflutterfire geo = Geoflutterfire();
var location = new Location();
var pos = await location.getLocation();
GeoFirePoint center = geo.point(latitude: pos.latitude.toDouble(), longitude: pos.longitude.toDouble());

var collectionReference = _firestore.collection('locations');
var geoRef = geo.collection(collectionRef: collectionReference);
return ids1.add(geoRef.within(center: center, radius: 50, field: 'position', strictMode: true).first.then((value) {
value.map((doc) {

if (doc.data.isNotEmpty) {
print('doooc id here ${doc['id']}');
ids1.add(doc['id']);
print(ids1);

}
}).toList();
setState(() {
ids = ids1;
print('setting state to ids ids print: ${ids.}');
});
}));

}

就像我说的,我的目的是获取 ID,一旦我有了列表,就检查 Firebase 中是否有一些相关数据,但我不确定这是我应该做的,有些事情我不知道不知如何躲避;当我打印列表时,我得到以下结果:

setting state to ids ids print: [Instance of 'Future', 3esdWesqrTD_123_3dssds3, sQWdsda23dsad_da21]

谁能告诉我为什么我的列表中有这个“ future ”实例以及如何避免它?

最佳答案

我没有尝试运行你的代码,但我怀疑问题是从语句开始的

return ids1.add(geoRef.within(center: center, radius: 50, field: 'position', strictMode: true).first.then((value) {

如您所见,您正在添加一些看起来需要awaitids1.add(...):geoRef.within(。 ..).首先.(...).我在返回语句中找不到所需的 ids1.add(...) 调用。尝试删除它,看看效果如何。

关于flutter - 列表包含 'Future<dynamic>' 的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57591033/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com