作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从firebase取得数据,但有数据,但我无法访问变量。
你能帮我吗 ?
先感谢您。
import 'dart:convert';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:flutter/material.dart';
class Models {
var data;
Map jsondata;
Future<Map<dynamic,dynamic>> where() async{
await Firestore.instance
.collection('musteri')
.where("name", isEqualTo: "Lion")
.snapshots()
.listen((data) =>
data.documents.map( (DocumentSnapshot document) {
this.jsondata = document.data;
print(this.jsondata);
// There is data here. when i use print(this.jsondata); , data apper in the terminal.
}).toString(),
);
print(this.jsondata); // this is an empty data.
return jsondata;
}
}
最佳答案
首先要注意的是,当您运行Firebase查询时,您将获得的响应类型为QuerySnapshot
,如果您将它们视为List
的DocumentSnapshot
,则可以更容易理解。
所以你可以这样改写你的代码
QuerySnapshot snapshot = await Firestore.instance
.collection('musteri')
.where("name", isEqualTo: "Lion")
.getDocuments();
DocumentSnapshot
。
snapshot.documents.forEach((document){
jsondata = document.data;
});
jsondata
。但是请记住,此
jsondata
将是
QuerySnapshot
中的最后一个元素。
List<Map<String, String>>
而不是
Map<String, String>
Future<Map<dynamic, dynamic>> where() async {
QuerySnapshot snapshot = await Firestore.instance
.collection('musteri')
.where("name", isEqualTo: "Lion")
.getDocuments();
snapshot.documents.forEach((document){
jsondata = document.data;
});
return jsonData;
}
关于firebase - 我如何在 “then”中获取此变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56501927/
我是一名优秀的程序员,十分优秀!