繁体   English   中英

JavaScript Promise EsLint 部署 Firebase-Cloud-Function 时出现问题

[英]JavaScript Promise EsLint Problems when deploying Firebase-Cloud-Function

当我尝试通过版本中的 Firebase-Tools CLI 中的“firebase deploy --only functions”命令部署以下 Firebase Javascript Function 时,出现以下错误。

exports.notifyNewMessage = functions.firestore.document("posts/{postId}").onCreate((docSnapshot, context) => {
    firestore.collection('accounts').get().then(function (querySnapshot) {
        querySnapshot.forEach(function (doc) {
            // doc.data() is never undefined for query doc snapshots
            console.log(doc.id, " => ", doc.data());
            return  doc.data().name;
        });
    });
});

我在官方 firebase 文档中找到了这个示例代码: https://firebase.google.com/docs/firestore/query-data/get-data#get_all_documents_in_a_collection

当我尝试部署代码时,正在运行 esLint Check,我收到以下错误:

 2:5   error    Expected catch() or return                  promise/catch-or-return
 2:49  warning  Unexpected function expression              prefer-arrow-callback
 2:49  error    Each then() should return a value or throw  promise/always-return
 3:31  warning  Unexpected function expression              prefer-arrow-callback

我必须如何修复这些错误? 谁能给我一个例子,带有 Catch 的 Promise 的外观如何?

我的目标是让用户帐户数据记录在控制台中,以便以后进行进一步的操作。 但我还不知道如何让这些用户数据记录在控制台中。

如果您的目标是将帐户集合的文档登录到 Cloud Function 控制台,那么以下应该可以解决问题:

exports.notifyNewMessage = functions.firestore.document("posts/{postId}").onCreate((docSnapshot, context) => {
    return firestore.collection('accounts').get()   // We return the promise chain, see the video series mentioned below
    .then(querySnapshot => {    //  Unexpected function expression 
        querySnapshot.forEach(doc => {   // Unexpected function expression 
            // doc.data() is never undefined for query doc snapshots
            console.log(doc.id, " => ", doc.data());
        });
        return null;    // Each then() should return a value or throw 
    })
    .catch(error => {
        console.log(error.message);
        return null;
});

请注意,您必须返回 Promise 或后台触发的 Cloud Function 中的值。 我建议您观看 Firebase 视频系列中关于“JavaScript Promises”的 3 个视频: https://firebase.google.com/docs/functions/video-series/解释了这个关键点。


另请注意,您需要在云 Function 中使用管理员 SDK,因此应将firestore声明如下:

// The Cloud Functions for Firebase SDK to create Cloud Functions and setup triggers.
const functions = require('firebase-functions');

// The Firebase Admin SDK to access Cloud Firestore.
const admin = require('firebase-admin');
admin.initializeApp();

const firestore = admin.firestore();


exports.notifyNewMessage = functions.firestore
    .document("posts/{postId}")
    .onCreate((docSnapshot, context) => {...});

参考: https://firebase.google.com/docs/functions/get-started

尝试这个

exports.notifyNewMessage = functions.firestore
    .document("posts/{postId}")
    .onCreate((docSnapshot, context) => {
        firestore.collection('accounts')
            .get()
            .then((querySnapshot) => {
                return querySnapshot.forEach((doc) => {
                    console.log(doc.id, " => ", doc.data());
                    return  doc.data().name;
                });
            })
            .catch((err) => err)
    });

或者创建一个eslintrc文件并修改规则

在此处了解如何配置 Eslint

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM