- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 Flutter 设置使用电子邮件和密码注册时遇到问题。我让它登录新用户并保存他们的 Firebase 身份验证信息,但它不会将任何配置文件数据保存到 Firebase 存储部分。我不确定我在这里做错了什么,我不明白为什么 id 为空。一些帮助和指导将不胜感激!
这是我得到的错误
Unhandled Exception: NoSuchMethodError: The getter 'id' was called on null.
Receiver: null
Tried calling: id
这是来自 user.dart
import 'package:cloud_firestore/cloud_firestore.dart';
class User {
final String id;
final String profileName;
final String username;
final String photoUrl;
final String url;
final String email;
final String bio;
final String createdAt;
User({
this.id,
this.profileName,
this.username,
this.photoUrl,
this.url,
this.email,
this.bio,
this.createdAt,
});
factory User.fromDocument(DocumentSnapshot doc) {
return User(
id: doc.documentID,
email: doc['email'],
username: doc['username'],
photoUrl: doc['photoUrl'],
url: doc['url'],
profileName: doc['profileName'],
bio: doc['bio'],
createdAt: doc['createdAt'],
);
}
}
这是来自 Signup.dart
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:buddiesgram/models/user.dart';
import 'package:buddiesgram/pages/HomePage.dart';
import 'package:shared_preferences/shared_preferences.dart';
class SignupPage extends StatefulWidget {
static final String id = 'signup_page';
final DateTime timestamp = DateTime.now();
User currentUser;
@override
_SignupPageState createState() => _SignupPageState();
}
class _SignupPageState extends State<SignupPage> {
final FirebaseAuth auth = FirebaseAuth.instance;
final _formKey = GlobalKey<FormState>();
String username, email, password;
SharedPreferences preferences;
checkIfSignedIn() async {
auth.onAuthStateChanged.listen((user) {
if (user != null) {
Navigator.push(context, MaterialPageRoute(builder: (context) => HomePage()));
}
});
@override
void initState() {
super.initState();
this.checkIfSignedIn();
}
}
saveUserInfoToFireStore() async {
preferences = await SharedPreferences.getInstance();
DocumentSnapshot documentSnapshot = await usersReference.document(currentUser.id).get();
if(!documentSnapshot.exists) {
usersReference.document(currentUser.id).setData({
"id": currentUser.id,
"profileName": currentUser.profileName,
"username": currentUser.username,
"photoUrl": currentUser.photoUrl,
"email": currentUser.email,
"bio": "",
"timestamp": timestamp,
"talkingTo": null,
});
//Write data to local
//currentUser = currentUser as User;
//await preferences.setString("id", currentUser.id);
//await preferences.setString("profileName", currentUser.profileName);
//await preferences.setString("photoUrl", currentUser.photoUrl);
await followersReference.document(currentUser.id).collection("userFollowers").document(currentUser.id).setData({});
documentSnapshot = await usersReference.document(currentUser.id).get();
}
currentUser = User.fromDocument(documentSnapshot);
}
signUp() async {
if(_formKey.currentState.validate()) {
_formKey.currentState.save();
try{
AuthResult authResult = await auth.createUserWithEmailAndPassword(email: email, password: password);
FirebaseUser signedInUser = authResult.user;
if(signedInUser != null) {
saveUserInfoToFireStore();
}
Navigator.push(context, MaterialPageRoute(builder: (context) => HomePage()));
}
catch(e) {
print(e);
}
}
}
这是来自 Timeline.dart
retrieveTimeLine() async {
QuerySnapshot querySnapshot = await timelineReference.document(currentUser.id)
.collection("timelinePosts").orderBy("timestamp", descending: true).getDocuments();
List<Post> allPosts = querySnapshot.documents.map((document) => Post.fromDocument(document)).toList();
setState(() {
this.posts = allPosts;
});
}
retrieveFollowings() async {
QuerySnapshot querySnapshot = await followingReference.document(currentUser.id)
.collection("userFollowing").getDocuments();
setState(() {
followingsList = querySnapshot.documents.map((document) => document.documentID).toList();
});
}
如果我遗漏了什么,请告诉我,这可能会有所帮助。
最佳答案
currentUser
为空,因为您没有初始化该类。例如:
saveUserInfoToFireStore() async {
currentUser = User(); //initialize
preferences = await SharedPreferences.getInstance();
DocumentSnapshot documentSnapshot = await usersReference.document(currentUser.id).get();
当然上面的代码还是不行,因为
id
等于空。如果数据库中的文档 id 等于用户 uid,则执行以下操作:
User loggedInUser;
saveUserInfoToFireStore() async {
var user = FirebaseAuth.instance.currentUser();
loggedInUser = User(id : user.uid);
preferences = await SharedPreferences.getInstance();
DocumentSnapshot documentSnapshot = await usersReference.document(loggedInUser.id).get();
所以在这里你得到了
uid
来自 Firebase 身份验证的用户,然后由于您使用可选的命名参数,您可以初始化
User
与
id
一起上课属性并在
document()
中使用它方法。
关于Flutter:未处理的异常:NoSuchMethodError:在 null 上调用了 getter 'id'。接收者:空尝试调用:id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62895099/
我正在尝试每 60 秒运行一次 CPU 密集型任务。我正在使用带有 PendingIntent 的 AlarmManager,` Intent intent = new Intent(Main
嗨,我正在一个项目中,我使用table_calender创建事件并将其保存在数据库中,我已经成功添加了数据库,然后在数据库中,当我必须检索它们时,当数据库中只有一个事件时,就会出现问题。根据日历显示制
我想构建一个 Sender-Receiver,每个都有两个 PartialView,并通过 Controller 中的发送方法连接它们。 Ajax 操作调用需要必须重新呈现的 div 的 Id。但我希
我目前正在尝试在 UIPickerView.subviews 中找到一个 UIPickerTable ...所以我遍历并执行 isKindOfClass:[UIPickerTable class] .
我正在尝试找到一种解决方案来控制我构建的 Android 应用程序中的 vpn 连接。到目前为止,我可以找到以下结果: 从 Android 版本 2.3.x 开始,无法通过 intents 控制 an
我可以找到大量链接两个调用的示例,但我有 3 个 http 调用使用前一个调用的数据一个接一个地进行。 我有两个人在使用 flatMap 所以: call1(params) .flatMap((r
我是 Azure 服务总线的新手,刚刚按照下面链接中的 MS 指南操作,运行了 2 个 .NET Core 控制台应用程序。一个作为发送者,另一个作为接收者/消费者。 https://learn.mi
我正在尝试从firestore中的flutter中检索单个文档,当存在文档时,它应该返回数据,而当不存在文档时,它应该返回null数据,到目前为止,我尝试过什么: @override Widg
我在使用 Flutter 设置使用电子邮件和密码注册时遇到问题。我让它登录新用户并保存他们的 Firebase 身份验证信息,但它不会将任何配置文件数据保存到 Firebase 存储部分。我不确定我在
我是一名优秀的程序员,十分优秀!