更改时颤振单选按钮不会更新Firebase

时间:2020-05-05 04:07:19

标签: firebase flutter dart radio-button

我是新手,我正在尝试做CRUD,但遇到了问题。在更新屏幕上,我可以将表单上的所有字段(单选字段除外)发送到Firebase Firestore。此问题仅在更新中发生,因为在创建中,无线电运行良好。我看不到更新的错误之处,您能帮我吗?

下面的代码是我的课

class _DetailFormState extends State<DetailForm> {
  final DataRepository repository = DataRepository();
  final _formKey = GlobalKey<FormBuilderState>();

  String sex;

  @override
  void initState() {       
    sex = widget.user.sex;
    super.initState();
  }

这些是我的单选按钮:

      ListTile(
        title: Align(
          child: new Text("Female"),
          alignment: Alignment(-1.2, 0),
        ),
        leading: Radio(
          value: "female",
          groupValue: widget.user.sex,
          onChanged: (String value) {
            setState(() {
              widget.user.sex = value;
            });
          },
        ),
      ),
      ListTile(
        title: Align(
          child: new Text("Male"),
          alignment: Alignment(-1.2, 0),
        ),
        leading: Radio(
          value: "male",
          groupValue: widget.user.sex,
          onChanged: (String value) {
            setState(() {
              widget.user.sex = value;
            });
          },
        ),
      ),

在这里我调用Firebase存储库以保存数据。如前所述,我可以保存除广播之外的任何字段。这是我的问题。没有错误消息出现。数据根本不会在Firebase中更新

  Row(
                mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                children: <Widget>[
                  MaterialButton(
                      color: Colors.blue.shade600,
                      onPressed: () {
                        Navigator.of(context).pop();
                      },
                      child: Text(
                        "Cancel",
                        style: TextStyle(color: Colors.white, fontSize: 12.0),
                      )),
    MaterialButton(
                      color: Colors.blue.shade600,
                      onPressed: () async {
                        Navigator.of(context).pop();                   
                        widget.user.sex = sex;
                        repository.updateUser(widget.user);  

                      },
                      child: Text(
                        "Update",
                        style: TextStyle(color: Colors.white, fontSize: 12.0),
                      )),
                ],
              ),

编辑1

  updateUser(User user) async {
    await collection
        .document(user.reference.documentID)
        .updateData(user.toJson());
  }

1 个答案:

答案 0 :(得分:0)

我发现了问题。我将小部件的值放入Firebase中已经存在的变量的值:

onPressed: () async {
                        Navigator.of(context).pop();                   
                        widget.user.sex = sex;
                        repository.updateUser(widget.user);  

                      }

实际上,应该做相反的事情。 Firebase中的变量接收小部件中的值:

onPressed: () async {
                            Navigator.of(context).pop();                   
                            sex = widget.user.sex;
                            repository.updateUser(widget.user);  

                          }