简体   繁体   中英

How Can I print all docs fields that created by logged in user

in carsData collection all users put there cars docs. I want to print just the logged in user docs fields without another users data. how can I do that?

Check this documentation for more information.

FirebaseFirestore.instance
            .collection('carsData')
            .where('uid', isEqualTo: FirebaseAuth.instance.currentUser.uid)
            .get();

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