【问题标题】:Cloud functions returns null, when called directly from the app直接从应用程序调用时,云函数返回 null
【发布时间】:2019-08-12 09:21:40
【问题描述】:

我正在尝试使用我的应用程序中的 Firebase 云功能将电子邮件和用户姓名发布到具有随机生成 ID 的云 Firestore 集合中。一切正常,但我想从一个函数中获得对我的应用程序的响应,但我真的无法做到这一点。这是我调用云函数的应用程序中的代码:

onPress ({commit, dispatch}, payload) {
      var addUserInformation = firebase.functions().httpsCallable('addUserInformation');
      addUserInformation(payload)
      .then(function(result) {
        console.log(result)
      }).catch(function(error) {
        var code = error.code;
        var message = error.message;
        var details = error.details;
        console.log(code);
        console.log(message);
        console.log(details);
      });
    },

这是云函数的代码:

    const functions = require('firebase-functions')
const admin = require('firebase-admin');

admin.initializeApp(functions.config().firebase);

// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//


exports.addUserInformation = functions.https.onCall((data) => {
    admin.firestore().collection('Backend').where('email', '==', data[1]).get()
    .then(function(querySnapshot) {
            if (querySnapshot.size > 0) {
                console.log('Email already exists')
            } else {
                admin.firestore().collection('Backend').add({
                    name: data[0],
                    email: data[1]
                })
                console.log('New document has been written')
            }
        return {result: 'Something here'};
    })
    .catch(function(error) {
        console.error("Error adding document: ", error);
    })
});

控制台显示结果为空

【问题讨论】:

    标签: javascript firebase google-cloud-functions


    【解决方案1】:

    您没有从 Cloud Functions 代码的顶层返回承诺,这意味着代码结束时没有向调用者返回任何内容。

    要解决此问题,请返回顶级 get 的值:

    exports.addUserInformation = functions.https.onCall((data) => {
        return admin.firestore().collection('Backend').where('email', '==', data[1]).get()
        .then(function(querySnapshot) {
                if (querySnapshot.size > 0) {
                    console.log('Email already exists')
                } else {
                    admin.firestore().collection('Backend').add({
                        name: data[0],
                        email: data[1]
                    })
                    console.log('New document has been written')
                }
            return {result: 'Something here'};
        })
        .catch(function(error) {
            console.error("Error adding document: ", error);
        })
    });
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-07-17
      • 1970-01-01
      • 1970-01-01
      • 2021-01-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多