top of page

[Flutter/dart] Update only specific field in Cloud Firestore


Overview


I think that cloud fire store is often used as a destination to store user data in smartphone apps. I would like to introduce some points to be aware of when updating only specific fields in a certain document among the saved data.


Details


Suppose each document in the'items' collection has two fields,'content' and'date'. If you want to update only the'content'field, do as follows.

await db.collection('items').doc('0').set({'content': 'change'}, SetOptions(merge: true));  //here!

It is important to set merge: true in SetOptions on the second line. Without it, the document will be overwritten with new data. (That is, 'date' will be null)

Don't forget to set it if you want to update only one of the multiple fields.

Recent Posts

See All

Comments


category

Let's do our best with our partner:​ ChatReminder

iphone6.5p2.png

It is an application that achieves goals in a chat format with partners.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

Let's do our best with our partner:​ ChatReminder

納品:iPhone6.5①.png

It is an application that achieves goals in a chat format with partners.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

Theme diary: Decide the theme and record for each genre

It is a diary application that allows you to post and record with themes and sub-themes for each genre.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png
bottom of page