简体   繁体   中英

Add map value to firestore document

.set({
    //how do i add a variable here : {

          }
    })

I can add the map but I can't use a variable to set the name of the map

To have the field name come from a map, use:

var fieldName = "nameOfField";
ref.set({
  [fieldName]: "value"
});

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