简体   繁体   中英

How to create sub collection to firebase firestore document

Is there a way to create sub collection after set() method like shown below?

在此处输入图像描述

                    CollectionReference ref1 =
                        FirebaseFirestore.instance.collection('chatrooms');
                    await ref1
                        .doc(chatroom)
                        .set({"chatid": chatroom})
                        .collection('messages')
                        .add({"message": _message.text});
    CollectionReference ref1 =
    FirebaseFirestore.instance.collection('chatrooms');
await ref1.doc('doc').set({"chatid": chatroom});
await ref1
    .doc('doc')
    .collection('messages')
    .add({"message": _message.text});

U can split it like this

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM