我正在尝试使用颤振将数据推送到 Firebase。我知道如何使用带有集合名称的 add 函数将数据推送到 firebase。
我有使用速度计 api 的速度,我想每 5 秒将数据推送到 firebase。
请帮我在不使用按钮的情况下发送数据。
答案 0 :(得分:0)
您需要编写每 5 秒运行一次的代码,使用此答案 https://stackoverflow.com/a/15298728/8572736 以及我能够想出的有状态小部件。
在 initstate 的 statefull 小部件中添加这个
void initState() {
future= new Future.delayed(const Duration(seconds: 5));
subscription = future.asStream().listen(PushSpeedToDb());
super.initState();
}
这将持续每 5 秒调用一次 PushSpeedToDB 然后在你的 pushSpeedToDB
void PushSpeedToDb() async {
//await get speed from speed api
//await add the currentSpeed the the cloud firestore document
}
在推送到数据库的速度中,您可以从api获取速度并将其添加到您的云firestore文档中。
这是完整代码的样子
class SpeedWidget extends StatefulWidget {
@override
State<StatefulWidget> createState() => SpeedWidgetState();
}
class SpeedWidgetState extends State<SpeedWidget> {
var future;
var subscription;
@override
void initState() {
future= new Future.delayed(const Duration(seconds: 5));
subscription = future.asStream().listen(PushSpeedToDb());
super.initState();
}
void PushSpeedToDb() async {
//await get speed from speed api
//await add the currentSpeed the the cloud firestore document
}
@override
void dispose() {
super.dispose();
subscription?.cancel();
}
@override
Widget build(BuildContext context) {
// TODO: implement build
throw UnimplementedError();
}
}