您能帮我吗?-firebase-function-onUpdate

问题描述 投票:0回答:1

我想使用onUpdate函数在“ front”更新时触发,但是很遗憾,我无法使其正常工作。你能帮我吗?

“在此处输入图像描述”

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 ...
node.js firebase google-cloud-firestore google-cloud-functions
1个回答
1
投票

您应该在更改前后比较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;
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.