简体   繁体   English

Flutter 实时数据库现在显示任何数据

[英]Flutter Realtime Database now showing any data

I'm trying to follow the official Firebase Realtime database documentation by inserting a new record to the database in flutter:我试图通过在 flutter 中向数据库中插入一条新记录来遵循官方 Firebase 实时数据库文档:

DatabaseReference ref = FirebaseDatabase.instance.ref("users/123");

    await ref.set({
      "name": "John",
      "age": 18,
      "address": {"line1": "100 Mountain View"}
    });

With the following code I don't get any error when inserting a new record but I can't view the data via the web.使用以下代码,我在插入新记录时不会收到任何错误,但我无法通过网络查看数据。 Does this possibility exist?这种可能性存在吗?

No. The Firebase Realtime Database usually updates within milliseconds.不会。Firebase 实时数据库通常会在几毫秒内更新。 However, if you are able to reaccess the data, I would like you to write a bug report here: https://firebase.google.com/support/troubleshooter/contact但是,如果您能够重新访问数据,我希望您在此处编写错误报告: https ://firebase.google.com/support/troubleshooter/contact

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM