gpt4 book ai didi

flutter - 访问firestore中的数组并找到它是否存在

转载 作者:行者123 更新时间:2023-12-03 04:32:03 25 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

1年前关闭。




Improve this question




我想访问 fname ,它是 firestore 中的一个数组,如果它存在,则打印找到或找不到
但我无法访问数组。
好像 fname 被创建为 string int firestore 而不是我能够打印“找到”

return StreamBuilder(
stream: Firestore.instance.collection('users').snapshots(),
builder: (context, snapshot) {
if (!snapshot.hasData) return Text('Loading Data');
return ListView.builder(
itemCount: snapshot.data.documents.length,
itemBuilder: (context, index) {
return Card(
child: ListTile(
leading: snapshot.data.documents[index].data['user'] == ["John"]
? Text("Found")
: Text('No position found'),
enter image description here

最佳答案

   await _refdata.child("users").once().then((DataSnapshot snap2) {
bool result;
result= snap2.value.where((element)=> elemet.devices.fname=="jhon);
});

leading:
result ==true
? Text("Found")
: Text('No position found'),
- - - 或者 - - - -
       leading:

Text(snapshot.data.documents[index].data[""devices].data['fname'])=="John"
? Text("Found")
: Text('No position found'),

关于flutter - 访问firestore中的数组并找到它是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64772921/

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