gpt4 book ai didi

flutter - 从StreamBuilder 和一个子StreamBuilder获取有效值

转载 作者:行者123 更新时间:2023-12-03 03:53:16 24 4
gpt4 key购买 nike

我正在尝试根据用户是否参加调查来显示特定的图标。

目前,我正在使用StreamBuilder侦听文档中的给定值,该文档返回调查名称。然后,我想在下一个StreamBuilder中使用调查名称,该名称将在给定的集合(由调查名称后跟_entrants-例如,Survey_entrants组成)中查找完整的调查文档,该文档将具有用户唯一ID的标题(名为userid)。

我现在遇到的问题是,虽然surveyName确实返回了放置在Cloud Firestore中的调查的名称,并在更改值时对其进行了更新(我可以通过注释掉return new Text('$ surveyName');命令来看到此名称。 )。

但是,它似乎并没有将该值传递到下一个StreamBuilder中-不管我输入的调查名称是什么,即使该文档不存在,我也会显示检查图标,提示(snapshot1.hasData)。

我知道SurveyName变量正在工作,但是如果我执行snapshot1.toString(),则会收到错误Snapshot(ConnectionState.active,“DocumentSnapshot”的实例,为null)。这必须具有数据,因此显示正在进行的调查。我该如何纠正?

我的代码:

Positioned(
right: 30,
top: 20,
child: StreamBuilder<DocumentSnapshot>(
stream: Firestore.instance
.collection('Controller')
.document('Current Survey')
.snapshots(),
builder: (BuildContext context,
AsyncSnapshot<DocumentSnapshot> snapshot) {
if (!snapshot.hasData) {
return CircularProgressIndicator();
} else {
var sn = snapshot.data;
surveyName = sn["cs"];
// return new Text('$surveyName');
return StreamBuilder(
stream: Firestore.instance
.collection('$surveyName' + '_entrants')
.document(userid)
.snapshots(),
builder: (BuildContext context, snapshot1) {
if (!snapshot1.hasData) {
return Icon(
Foundation.burst_new,
size: 48,
color: Color(0xff303841),
);
} else if (snapshot1.hasData) {
return Icon(
Foundation.check,
size: 48,
color: Color(0xff303841),
);
} else {
return Icon(
MaterialIcons.error_outline,
size: 48,
color: Color(0xff303841),
);
}
});
}
})),

最佳答案

我遇到的问题是,即使数据库中没有要返回的内容,Cloud Firestore也会返回DocumentSnapshot。因此,我将(snapshot1.hasData)更改为(snapshot1.data.exists),并且按预期方式工作-图标会根据响应进行更改。

关于flutter - 从StreamBuilder <DocumentSnapshot>和一个子StreamBuilder获取有效值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62252972/

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