React本机云功能日志为空

时间:2019-03-03 04:38:30

标签: firebase react-native google-cloud-functions

我今天正在尝试使用云功能,遵循文档并使其成功部署,但是日志始终为空。

我正在从本网站使用RN firebase客户端SDK

https://rnfirebase.io/docs/v5.x.x/functions/reference/functions

 "dependencies": {
    "firebase-admin": "^7.0.0",
    "firebase-functions": "^2.2.0",
}

这是我的功能代码:

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.helloWorld = functions.https.onRequest((request, response) => {
    console.log('hello world');
 response.send("Hello from Firebase yo!");
});

这是我的仪表板屏幕截图: firebse dashboard

这是我的日志屏幕截图: enter image description here

我错过了什么吗?

0 个答案:

没有答案