尝试为 Firebase 部署最简单的 Cloud Function:
const functions = require('firebase-functions');
exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
})
我已经运行firebase init
并选择了functions
.
index.js
Firebase CLI 已在其中和package.json
内部创建了一个名为“functions”的文件夹。索引文件包含上述函数。
然后我运行firebase deploy --only functions
并在终端中收到一条消息,表明该功能已部署。根据这个页面,我应该已经获得了该功能的链接。
相反,我得到了一个指向我的项目控制台的链接。没有迹象表明该功能已部署在 firebase Web 控制台功能部分。
任何提示将非常感谢!