Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/flutter/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
颤振-Firebase Auth+;Firestore-不同的查询结果_Firebase_Flutter_Google Cloud Firestore_Firebase Authentication - Fatal编程技术网

颤振-Firebase Auth+;Firestore-不同的查询结果

颤振-Firebase Auth+;Firestore-不同的查询结果,firebase,flutter,google-cloud-firestore,firebase-authentication,Firebase,Flutter,Google Cloud Firestore,Firebase Authentication,为什么所有任务的结束结果都与所有任务2不同?Firebase auth是否以某种方式与Firestore交互?这是可重复的行为,因此在登录过程中不会发生任何更改。在文档中找不到关于它的任何信息 var allTasks = await TaskDao.getAll(); var credentials = await FirebaseAuth.instance.signInWithEmailAndPassword( email: emailController.text,

为什么所有任务的结束结果都与所有任务2不同?Firebase auth是否以某种方式与Firestore交互?这是可重复的行为,因此在登录过程中不会发生任何更改。在文档中找不到关于它的任何信息

  var allTasks = await TaskDao.getAll();

  var credentials = await FirebaseAuth.instance.signInWithEmailAndPassword(
      email: emailController.text, password: passController.text);

  var allTasks2 = await TaskDao.getAll();