使用 React Route 部署到 S3 后看到空白页面

Posted

技术标签:

【中文标题】使用 React Route 部署到 S3 后看到空白页面【英文标题】:Seeing empty page after deployed to S3 with React Route 【发布时间】:2017-04-02 22:03:42 【问题描述】:

我用 React 和 React Router 构建了一个 SPA。我也在使用https://github.com/facebookincubator/create-react-app,因为它是一个非常简单的应用程序。当我使用 webpack 开发时,我可以很好地看到页面。但是,在我使用来自create-react-appnpm run build 构建生产后,我通常会获得html 文件和css 和js。我将所有内容上传到 S3,但是当我转到该页面时,我只得到空白页面

这就是我所看到的

<!-- react-empty: 1 -->

我猜是这样的,因为 S3 默认为 index.html,我无法更改。 React Router 不知道如何处理index.html,但我也有/ root 作为默认值,但我仍然看到一个空白页。不确定如何解决此问题?

这是我的路由器

ReactDOM.render(
  <Router history=browserHistory>
    <Route path="/" component=App>
      <IndexRoute component=Home />
      <Route path="question2" component=Question2 />
      <Route path="question3" component=Question3 />
      <Route path="thankyou" component=Thankyou />
    </Route>
  </Router>,
  document.getElementById('root')
);

这是creawte-react-app 使用的模板,它在开发中运行良好。

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
    <!--
      Notice the use of %PUBLIC_URL% in the tag above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->
    <title>React App</title>
  </head>
  <body>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start`.
      To create a production bundle, use `npm run build`.
    -->
  </body>
</html>

【问题讨论】:

【参考方案1】:

您正试图在静态网页上使用browserHistory。对于静态页面,您应该使用 hashHistory

为什么在静态页面使用浏览器历史记录时会发生这种情况?

当 React Router 首次挂载时,它(实际上是它使用的 history 模块)检查当前 URL 以确定初始位置。对于browserHistory,这是域之后的任何内容,因此example.com/index.html 的初始位置将是/index.html

如果您有index.html 的路由,则在页面加载时会匹配该路由,并且事情可能会正常运行。如果你的应用有一个&lt;Link&gt;/other 的路由,你甚至可以点击它,URL 会变成example.com/other

但是,由于您使用的是静态网页,因此无法链接到 example.com/other。如果有人尝试加载该页面,他们将收到 404 错误,因为服务器没有要提供的 /other 页面。

输入hashHistory

当您使用 hashHistory 时,确定位置时唯一考虑的 URL 部分是哈希之后的部分。

如果您在使用hashHistory 时导航到example.com/index.html,您会注意到URL 已更改为example/com/index.html#/。如果 URL 不包含哈希值,则会为您插入哈希值,并将其设置为根(/ 的绝对路径)。

回到前面的示例,其中&lt;Link&gt; 链接到/other,当单击该链接时,URL 将更改为example.com/index.html#/other。现在,如果您直接导航到该 URL,服务器将加载 example.com/index.html,React Router 将检查哈希,发现它是 #/other 并将初始位置设置为 /other 路由。

【讨论】:

你能解释一下有什么区别以及为什么使用 hashHistory 会起作用吗?非常感谢。 详细说明了为什么需要使用 hashHistory。希望这会有所帮助。 工作就像一个魅力......也很有意义!

以上是关于使用 React Route 部署到 S3 后看到空白页面的主要内容,如果未能解决你的问题,请参考以下文章

使用 S3 的 React App 中的 CORS ORIGIN 错误

将 www 子域重定向到 Route 53 上的顶点(裸)域(不使用 S3)?

Cloudfront 域名无法使用 S3、Cloudfront 和 Route 53 将 HTTP 重定向到 HTTPS

在 S3 上托管 React 页面并对 Elastic Beanstalk 上的服务器进行 REST api 调用

使用 Route53 和 CloudFront 和 S3 将顶点域重定向到另一个域的子域

使用 CloudFront 部署在 S3 上的 VueJS 应用程序的“指定的密钥不存在”