Вы можете мне помочь? -Firebase-function-onUpdate - PullRequest
0 голосов
/ 08 октября 2019

Я хочу использовать функцию onUpdate для запуска при обновлении "front", но, к сожалению, я не смог заставить его работать. Вы можете мне помочь?

enter image description here

exports.updateUser = functions.firestore
.document('trashcan/{trashcanId}')
.onUpdate((change, context) => {
  'front';
  // Get an object representing the document
  // e.g. {'name': 'Marie', 'age': 66}
  const newValue = change.after.data();

  // ...or the previous value before this update
  const previousValue = change.before.data();

  // access a particular field as you would any JS property
  const front = newValue.front;

  // perform desired operations ...

1 Ответ

1 голос
/ 08 октября 2019

Вы должны сравнить значения поля front до и после изменения следующим образом:

exports.detectFrontChanges = functions.firestore
.document('trashcan/{trashcanId}')
.onUpdate((change, context) => {

  const newValue = change.after.data();
  const previousValue = change.before.data();

  if (newValue.front !== previousValue.front) {
     //front field value has changed
     //Do something

     //e.g. write to the log console
     console.log("front field value has changed!");
     //e.g. and write a Firestore document
     return admin.firestore().collection('events').doc('event1').set({changeType: 'front field'});
  } else {
     //nothing to do
     //return null to indicate to the Cloud Function platform that this Function can be finished
     return null;
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...