我已经使用了实时数据库与此设置:
的数据
late final stream = FirebaseDatabase.instance.ref().child('data').child('environment').onValue;
StreamBuilder(
stream: stream,
builder: (context, snapshot) {
if (snapshot.hasData) {
final data = snapshot.data?.snapshot.value as Map?;
if (data == null) {
return Text('No data');
}
final humidity = data['humidity'];
final temperature = data['temperature'];
字符串
但是我如何从数据库中检索这些值呢?读取传感器和时间戳epoc
1条答案
按热度按时间rekjcdws1#
从我在这里看到你得到一个巨大的Map与firebase Id作为条目
所以可以试试这样的方法
字符串