Firebase功能未删除文档

时间:2019-07-11 04:34:38

标签: javascript firebase google-cloud-firestore google-cloud-functions

Firebase函数已成功执行,但未删除文档。没有错误。该ID以正确的方式传递。

exports.toremove = functions.firestore
  .document('school/toremove')
  .onUpdate((change, context) => {
    const newValue = change.after.data();

    const id = newValue.id;
    console.log("DELETING THE DOC with id= " + id)
    return admin.firestore().collection('notifications').doc(id).delete();
  });

1 个答案:

答案 0 :(得分:-1)

使用PHP中的unlink()函数。 参考https://www.php.net/manual/en/function.unlink.php