我使用以下代码来遍历数据集合,如果电子邮件匹配,则更改字段。请注意,代码在集合上崩溃。迭代工作正常。 AFS初始化为AngularFirestore
onChangeRole(email) {
this.afs.collection("users").get().toPromise().then(function (querySnapshot) {
querySnapshot.forEach(function (doc) {
// doc.data() is never undefined for query doc snapshots
console.log(doc.id, " => ", doc.data());
if (doc.data().email == email) {
this.afs.collection("users").doc(doc.id).set({
role: 2
})
}
});
});
}
但是我收到了
错误错误:未捕获(承诺):TypeError:无法读取未定义的属性“ afs” TypeError:无法读取未定义的属性“ afs”
afs是AngularFirestore的地方
import { AngularFirestore, AngularFirestoreCollection , AngularFirestoreDocument} from '@angular/fire/firestore';
答案 0 :(得分:1)
您必须在构造函数中对其进行初始化,然后就可以像尝试使用的那样在 this.afs 中使用它。
每个示例:
constructor(private afs: AngularFirestore) { }
编辑: 更改箭头功能用法的功能词:
this.afs.collection("users").get().toPromise().then( querySnapshot => {
querySnapshot.forEach( doc => {
// doc.data() is never undefined for query doc snapshots
console.log(doc.id, " => ", doc.data());
if (doc.data().email == email) {
this.afs.collection("users").doc(doc.id).set({
role: 2
})
}
});
});
答案 1 :(得分:0)
这应该有效
onChangeRole(email) {
const usersColl = this.afs.collection("users");
usersColl.get().toPromise().then(function (querySnapshot) {
querySnapshot.forEach(function (doc) {
console.log(doc.id, " => ", doc.data());
if (doc.data().email == email) {
usersColl.doc(doc.id).set(
{ role: 2 },
{ merge: true }
)
}
});
});
}