您可以使用async/await
和Promise
来解决这个问题。下面是一个使用Angular和Firestore的代码示例:
import { Component } from '@angular/core';
import { AngularFirestore } from '@angular/fire/firestore';
@Component({
selector: 'app-example',
template: `
`
})
export class ExampleComponent {
constructor(private firestore: AngularFirestore) {}
async addDocument() {
const docRef = await this.firestore.collection('yourCollection').add({ name: 'John' });
const docId = docRef.id;
await this.updateDocument(docId);
}
async updateDocument(docId: string) {
const docRef = this.firestore.collection('yourCollection').doc(docId);
await docRef.update({ age: 25 });
console.log('Document updated successfully');
}
}
在addDocument
函数中,我们首先使用await
关键字来等待文档添加操作完成,并获取生成的文档ID。然后,我们将文档ID作为参数传递给updateDocument
函数。
在updateDocument
函数中,我们使用文档ID来获取文档的引用,并执行更新操作。
上一篇:Angular Firestore - 异步请求的问题?
下一篇:Angular Firestore Admin Router Guard -> Angular Firestore 管理员路由守卫