如何使用 firebase 函数在 firebase 托管中保存文本文件
How to save text file in firebase hosting using firebase functions
我想使用 firebase 函数从 firebase 数据库生成站点地图。
最后一步是将生成的 xml 文件保存在 index.html 附近的某处,以提供 google.
的相对路径
如何将 firebase 函数中的 xml 文件保存到 firebase 托管路径。
谢谢。
没有 API 可以操纵 Firebase 托管网站的内容。所以你不能直接将文件保存到托管路径。
取而代之的是 Firebase 托管和 Cloud Functions 之间的集成,允许针对您指定的特定 URL 调用您的 Cloud Functions 代码。然后将函数的结果存储在 Firebase CDN 中,并根据您指定的 headers 进行缓存。您可以在这样的 Cloud Function 中生成站点地图。
要了解有关此方法的更多信息,请阅读 Firebase Hosting documentation on the integration。
只需从任何站点地图创建者网站获取 xml 格式的站点地图。之后当你 firebase init
时你会看到有两个文件夹。一个是函数,另一个是 public。
将 xml 文件放入 public 文件夹。当您 运行 命令 firebase deploy
.
时,它将与其他文件一起上传
我想使用 firebase 函数从 firebase 数据库生成站点地图。
最后一步是将生成的 xml 文件保存在 index.html 附近的某处,以提供 google.
的相对路径如何将 firebase 函数中的 xml 文件保存到 firebase 托管路径。
谢谢。
没有 API 可以操纵 Firebase 托管网站的内容。所以你不能直接将文件保存到托管路径。
取而代之的是 Firebase 托管和 Cloud Functions 之间的集成,允许针对您指定的特定 URL 调用您的 Cloud Functions 代码。然后将函数的结果存储在 Firebase CDN 中,并根据您指定的 headers 进行缓存。您可以在这样的 Cloud Function 中生成站点地图。
要了解有关此方法的更多信息,请阅读 Firebase Hosting documentation on the integration。
只需从任何站点地图创建者网站获取 xml 格式的站点地图。之后当你 firebase init
时你会看到有两个文件夹。一个是函数,另一个是 public。
将 xml 文件放入 public 文件夹。当您 运行 命令 firebase deploy
.