FieldValue undefined when using functions and Firestore

前端 未结 2 1827
别那么骄傲
别那么骄傲 2020-12-15 03:56

I have the following function:

const functions = require(\'firebase-functions\');
const admin = require(\'firebase-admin\');
const FieldValue = require(\'fir         


        
相关标签:
2条回答
  • 2020-12-15 04:05

    It worked!

    Require firebase-admin

    const admin = require('firebase-admin')
    

    Add this constant

    const fieldValue = admin.firestore.FieldValue; 
    

    Now use

    fieldValue.delete()
    

    For more reference : otcollect.com/post

    0 讨论(0)
  • 2020-12-15 04:29

    Turns out it was a mistake in the documentation, the correct import should have been const FieldValue = require('firebase-admin').firestore.FieldValue;

    Update

    It should be said that Firebase responded within hours and are correcting the docs asap.

    0 讨论(0)
提交回复
热议问题