3

Firestore 云函数不会触发事件,我的函数不会触发 onCreate、onUpdate、onDelete 或 onWrite。JS 脚本被成功推送到 Firestore。

数据库设计:

-|search
    -|searchId
        -|id: string
        -|name: sting
        -|img: string

规则:

match /search/{searchId}{
    allow read;
    allow write: if request.auth != null;
}


const functions = require('firebase-functions');
const admin = require("firebase-admin");
admin.initializeApp(functions.config().firebase);

exports.updateIndex = functions.database.ref('/search/{searchId}').onWrite(event => {
    console.log('Working')
}
4

1 回答 1

2

由于您使用的是firestore,因此上述方法将不起作用。您在问题中拥有的功能是针对 firebase 而不是 firestore,请将其更改为:

exports.updateIndex = functions.firestore.document('search/{searchId}').onWrite(event => {
console.log('Working');
});

更多信息在这里:

https://firebase.google.com/docs/functions/firestore-events

于 2018-03-15T13:56:04.950 回答