作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
被简要提及here ,但现在我已经将我的 GCP 项目连接到 Firebase,在 Firebase 托管下设置了一个自定义域,但是在 Firebase 仪表板的功能页面上,似乎没有办法在云函数上设置虚 URL。
我的 firebase.json(在我的项目的根目录)看起来像:
{
"hosting": {
"public": "public",
"rewrites": [
{ "source": "/helloWorld", "function": "helloWorld" },
{ "source": "/progress", "function": "progress" }
]
}
}
最佳答案
要将虚域与您的 Cloud Functions 相关联,您需要将它们与 Firebase 托管相关联。见documentation on connecting the two .
假设您有一个云功能 https://us-central1-<your-project-id>.cloudfunctions.net/bigben
.
建立此连接后,该功能也将在 https://<your-project-id>.firebaseapp.com/bigben
上可用。 .
如果您还 connect a custom domain使用 Firebase 托管,该功能也将在 https://<your-custom-domain>.com/bigben
上可用.
关于javascript - Firebase:如何将虚 URL 添加到云功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51461674/
我是一名优秀的程序员,十分优秀!