在Flutter中使用云Firestore发布时获取当前自动生成的文档ID,可以通过以下步骤实现:
import 'package:firebase_core/firebase_core.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
runApp(MyApp());
}
add()
方法来添加文档,并且通过then()
方法获取自动生成的文档ID:CollectionReference collectionRef = FirebaseFirestore.instance.collection('your_collection');
collectionRef.add({'field1': 'value1', 'field2': 'value2'})
.then((DocumentReference docRef) {
String docId = docRef.id;
print('Generated document ID: $docId');
})
.catchError((error) {
print('Error adding document: $error');
});
在上述代码中,collectionRef.add()
方法用于添加一个新的文档,并返回一个Future
对象。通过调用then()
方法,可以在文档添加成功后获取自动生成的文档ID。将文档ID存储在变量docId
中,你可以根据需要进行后续操作。
这样,你就可以在Flutter中使用云Firestore发布时获取当前自动生成的文档ID了。
腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体产品和服务选择应根据实际需求进行评估和决策。
领取专属 10元无门槛券
手把手带您无忧上云