我正在使用Firebase进行此注册,并将用户详细信息存储在Firestore中。
我已经能够成功注册用户,但是当我将详细信息添加到数据库时,在其中一个字段上出现错误。未定义。
当我尝试不使用catchPhrase
字段时,它将起作用。
这是我的代码:auth.service.ts
emailSignUp(email: string, password: string) {
return this.afAuth.auth
.createUserWithEmailAndPassword(email, password)
.then(credential => {
this.customSetUSerData(credential.user);
})
.catch(error => {
console.log(error);
});
}
customSetUSerData(user: User) {
const userRef: AngularFirestoreDocument<any> = this.afs.doc(`users/${user.uid}`);
const userData: User = {
uid: user.uid,
email: user.email,
displayName: user.displayName,
catchPhrase: user.catchPhrase
}; // photoURL: user.photoURL,
return userRef.set(userData).catch(err => console.log(err));
}
这是register.component.html
ngOnInit() {
this.signUpForm = this.fb.group({
email: ['', [Validators.required, Validators.email]],
password: [
'',
[
Validators.pattern('^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$'),
Validators.minLength(6),
Validators.maxLength(25),
Validators.required
]
],
region: ['', []],
catchPhrase: ['', [Validators.required]],
photoUrl: []
});
}
get email() {
return this.signUpForm.get('email');
}
get password() {
return this.signUpForm.get('password');
}
get catchPhrase() {
return this.signUpForm.get('catchPhrase');
}
get photoUrl() {
return this.signUpForm.get('photoUrl');
}
signup() {
// console.log(this.email.value + this.password.value + this.catchPhrase.value);
return this.auth.emailSignUp(this.email.value, this.password.value);
}
}
这是错误:
错误:函数DocumentReference.set()用无效数据调用。不支持的字段值:未定义(可在字段catchPhrase中找到)
答案 0 :(得分:0)
错误消息非常明显:您正在尝试将字段catchPhrase
设置为undefined
,这是无效值。
这在以下代码中发生:
catchPhrase: user.catchPhrase
因此,看来user.catchPhrase
是undefined
。这是有道理的,因为Firebase身份验证用户没有catchPhrase
属性。您可能希望传递一些用户输入/选择的流行语到代码中,在这种情况下,您应该将其作为一个单独的参数传递或像这样查找它:
catchPhrase: catchPhrase
这将称为catchPhrase
属性的(只读)getter:
get catchPhrase() {
return this.signUpForm.get('catchPhrase');
}