部署Firebase云函数时出错每个then()应该返回一个值或抛出

时间:2019-07-13 12:28:38

标签: javascript firebase google-cloud-functions

关于这里有什么问题的任何建议?该代码来自Google本教程来自Google https://firebase.googleblog.com/2017/08/guard-your-web-content-from-abuse-with.html

尝试在Firebase上部署时遇到此错误。

  

错误每个then()应该返回一个值或抛出promise / always-return

这是代码:

//recaptcha
exports.checkRecaptcha = functions.https.onRequest((req, res) => {
    const response = req.query.response;
    console.log("recaptcha response", response);
    rp({
        uri: 'https://recaptcha.google.com/recaptcha/api/siteverify',
        method: 'POST',
        formData: {
            secret: 'my_secret_key',
            response: response
        },
        json: true
    }).then(result => {
        console.log("recaptcha result", result);
        if (result.success) {
            res.send("You're good to go, human.");
        }
        else {
            res.send("Recaptcha verification failed. Are you a robot?");
        }
    }).catch(reason => {
        console.log("Recaptcha request failure", reason);
        res.send("Recaptcha request failed.");
    });
});

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

该错误意味着每个.then()方法都必须返回某些内容。

如果您不关心返回值,则可以在整个return null;块之后else

在这里,您可以这样做:

if (result.success) {
    return res.send("You're good to go, human.");
}
return res.send("Recaptcha verification failed. Are you a robot?");

(不需要else,因为return停止了该方法的执行,因此将不执行之后的行)