<i id='RLrrk'><tr id='RLrrk'><dt id='RLrrk'><q id='RLrrk'><span id='RLrrk'><b id='RLrrk'><form id='RLrrk'><ins id='RLrrk'></ins><ul id='RLrrk'></ul><sub id='RLrrk'></sub></form><legend id='RLrrk'></legend><bdo id='RLrrk'><pre id='RLrrk'><center id='RLrrk'></center></pre></bdo></b><th id='RLrrk'></th></span></q></dt></tr></i><div id='RLrrk'><tfoot id='RLrrk'></tfoot><dl id='RLrrk'><fieldset id='RLrrk'></fieldset></dl></div>
    1. <tfoot id='RLrrk'></tfoot>
      <legend id='RLrrk'><style id='RLrrk'><dir id='RLrrk'><q id='RLrrk'></q></dir></style></legend>
    2. <small id='RLrrk'></small><noframes id='RLrrk'>

          <bdo id='RLrrk'></bdo><ul id='RLrrk'></ul>
      1. 如何在 Firebase 托管中处理动态 URL 路由

        How to handle dynamic URL routing in Firebase hosting(如何在 Firebase 托管中处理动态 URL 路由)

          <tbody id='iHJ3V'></tbody>
        • <i id='iHJ3V'><tr id='iHJ3V'><dt id='iHJ3V'><q id='iHJ3V'><span id='iHJ3V'><b id='iHJ3V'><form id='iHJ3V'><ins id='iHJ3V'></ins><ul id='iHJ3V'></ul><sub id='iHJ3V'></sub></form><legend id='iHJ3V'></legend><bdo id='iHJ3V'><pre id='iHJ3V'><center id='iHJ3V'></center></pre></bdo></b><th id='iHJ3V'></th></span></q></dt></tr></i><div id='iHJ3V'><tfoot id='iHJ3V'></tfoot><dl id='iHJ3V'><fieldset id='iHJ3V'></fieldset></dl></div>
          <tfoot id='iHJ3V'></tfoot>

                <bdo id='iHJ3V'></bdo><ul id='iHJ3V'></ul>

                <small id='iHJ3V'></small><noframes id='iHJ3V'>

              • <legend id='iHJ3V'><style id='iHJ3V'><dir id='iHJ3V'><q id='iHJ3V'></q></dir></style></legend>
                • 本文介绍了如何在 Firebase 托管中处理动态 URL 路由的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  假设在 Firebase 的公共文件夹中,我有一个 index.html 和一个 salon.html.

                  So let's say in my public folder in Firebase i have an index.html and a salon.html.

                  现在对于像 xyz.com/salon/43 这样的网址,我想加载 salon.html 并在 javascript 中从实时数据库中获取沙龙 43.

                  Now for a url like xyz.com/salon/43 I want to load salon.html and in the javascript I want to fetch salon 43 from the realtime database.

                  现在我可以使用 xyz.com/salon?id=43 之类的网址.我想知道是否可以在 Firebase 托管中进行前者,如果可以,如何做.

                  Right now I'm able to have urls like xyz.com/salon?id=43. I'm wondering if it is possible to do the former in Firebase hosting and if so how.

                  推荐答案

                  您正在寻找 Firebase Hosting 重写.来自文档:

                  You're looking for Firebase Hosting rewrites. From the documentation:

                  如果您想为多个 URL 显示相同的内容,请使用重写.重写对于模式匹配特别有用,因为您可以接受任何与模式匹配的 URL,并让客户端代码决定要显示的内容.重写规则可用于支持使用 HTML5 pushState 进行导航的应用程序.当浏览器尝试打开指定的源 URL 时,它会在目标 URL 处获得文件的内容.

                  Use a rewrite when you want to show the same content for multiple URLs. Rewrites are particularly useful with pattern matching, as you can accept any URL that matches the pattern and let the client-side code decide what to display. Rewrite rules can be used to support apps using HTML5 pushState for navigation. When a browser attempts to open a specified source URL it will be given the contents of the file at the destination URL.

                  可以通过在 firebase.json 文件中的托管中定义 rewrites 部分来指定 URL 重写:

                  URL rewrites can be specified by defining a rewrites section within hosting in the firebase.json file:

                  "hosting": {
                    // Add the "rewrites" section within "hosting"
                    "rewrites": [ {
                      "source": "**",
                      "destination": "/index.html"
                    } ]
                  }
                  

                  这篇关于如何在 Firebase 托管中处理动态 URL 路由的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Pause youtube video, youtube api(暂停 youtube 视频,youtube api)
                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How can I stop a video with Javascript in Youtube?(如何在 Youtube 中停止使用 Javascript 的视频?)
                  How to call Greasemonkey#39;s GM_ functions from code that must run in the target page scope?(如何从必须在目标页面范围内运行的代码中调用 Greasemonkey 的 GM_ 函数?)
                  How do you mute an embedded Youtube player?(如何使嵌入式 Youtube 播放器静音?)
                  How to get number of video views with YouTube API?(如何使用 YouTube API 获取视频观看次数?)

                • <tfoot id='vDtNX'></tfoot>

                      <bdo id='vDtNX'></bdo><ul id='vDtNX'></ul>

                      • <small id='vDtNX'></small><noframes id='vDtNX'>

                          <tbody id='vDtNX'></tbody>
                          • <legend id='vDtNX'><style id='vDtNX'><dir id='vDtNX'><q id='vDtNX'></q></dir></style></legend>
                            <i id='vDtNX'><tr id='vDtNX'><dt id='vDtNX'><q id='vDtNX'><span id='vDtNX'><b id='vDtNX'><form id='vDtNX'><ins id='vDtNX'></ins><ul id='vDtNX'></ul><sub id='vDtNX'></sub></form><legend id='vDtNX'></legend><bdo id='vDtNX'><pre id='vDtNX'><center id='vDtNX'></center></pre></bdo></b><th id='vDtNX'></th></span></q></dt></tr></i><div id='vDtNX'><tfoot id='vDtNX'></tfoot><dl id='vDtNX'><fieldset id='vDtNX'></fieldset></dl></div>