3

我正在使用 react-helmet 并且在客户端上,检查窗口中的一切都很好,并且标签正在正确输出。但是,当我在生产中启动时,标签中的 SSR 启动并没有显示在源代码中,而且我根本没有收到任何错误。

我也尝试记录“字符串化”标题标签并得到:

<title data-react-helmet="true"></title>

这是一些代码:

这是我设置标签的页面组件之一,3 个页面组件的设置都与此相同。(我已经简化了组件渲染函数和数据对象,因为它们非常大,我确信它们没有错。)

import React, { Component } from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import { Helmet } from 'react-helmet';

// Components
import WorkGrid from 'universal/components/Grid';
import Wrapper from 'universal/components/Wrapper';
import Container from 'universal/components/Container';
import Hero from 'universal/components/Hero';
import PageWrapper from 'universal/components/PageWrapper';
import GridHeader from 'universal/components/GridHeader';

const data = {};

class Work extends PageComponent {

  render () {
    return (
      <PageWrapper ref="root">
        <Helmet>
          <title>Work</title>
          <meta name="description" content="Work Description" />
        </Helmet>
        <h1>Work Page</h1>
      </PageWrapper>
    );
  }
}

export default connect(state => ({
  theme: state.ui.theme
}), { changeTheme }, null, { withRef: true })(Work);

这是一些服务器代码,特别是 SSR 发生故障的地方,我正在调用 Helmet.renderStatic();

    // Node Modules
import fs from 'fs';
import {basename, join} from 'path';

// Libraries
import React from 'react';
import {StaticRouter} from 'react-router';
import {renderToString} from 'react-dom/server';

// styled-components
import { ServerStyleSheet, ThemeProvider } from 'styled-components';
import { theme } from '../universal/constants';

// Redux
// import {push} from 'react-router-redux';
import createStore from 'data/redux/createStore.js';
import createHistory from 'history/createMemoryHistory';
import { Provider } from 'react-redux';

// Third Party Scripts
import * as thirdPartyScripts from './thirdPartyScripts.js';

// Helmet
import {Helmet} from 'react-helmet';

function renderApp(url, res, store, assets) {
  const PROD = process.env.NODE_ENV === 'production';
  const context = {};

  const {
    manifest,
    app,
    vendor
  } = assets || {};

  let state = store.getState();

  const stylesheet = new ServerStyleSheet();

  const initialState = `window.__INITIAL_STATE__ = ${JSON.stringify(state)}`;
  const Layout =  PROD ? require( '../../build/prerender.js') : () => {};

  const root = PROD && renderToString(
    stylesheet.collectStyles(
      <Provider store={store}>
        <ThemeProvider theme={theme}>
          <StaticRouter location={url} context={context}>
            <Layout />
          </StaticRouter>
        </ThemeProvider>
      </Provider>
    )
  );

  const styleTags = stylesheet.getStyleTags();

  const seo = Helmet.renderStatic();

  console.log(seo.title.toString());

  const html = `<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        ${seo.title.toString()}
        ${seo.meta.toString()}
        ${seo.link.toString()}

        <link rel="shortcut icon" href="/favicon.ico">
        <link rel="icon" sizes="16x16 32x32 64x64" href="/favicon.ico">
        <link rel="apple-touch-icon" href="/favicon-57.png">
        <link rel="apple-touch-icon" sizes="114x114" href="/favicon-114.png">
        <link rel="apple-touch-icon" sizes="72x72" href="/favicon-72.png">
        <link rel="apple-touch-icon" sizes="144x144" href="/favicon-144.png">
        <link rel="apple-touch-icon" sizes="60x60" href="/favicon-60.png">
        <link rel="apple-touch-icon" sizes="120x120" href="/favicon-120.png">
        <link rel="apple-touch-icon" sizes="76x76" href="/favicon-76.png">
        <link rel="apple-touch-icon" sizes="152x152" href="/favicon-152.png">
        <link rel="apple-touch-icon" sizes="180x180" href="/favicon-180.png">
        <meta name="msapplication-TileColor" content="#FFFFFF">
        <meta name="msapplication-TileImage" content="/favicon-144.png">
        <meta name="msapplication-config" content="/browserconfig.xml">

        ${ styleTags }

        ${PROD ? '<link rel="stylesheet" href="/static/prerender.css" type="text/css" />' : ''}

        <link href="${thirdPartyScripts.googleFont}" rel="stylesheet" type="text/css">

        <script>${thirdPartyScripts.googleAnalytics}</script>
    </head>

    <body>
      <script>${initialState}</script>
      ${PROD ? `<div id="root">${root}</div>` : '<div id="root"></div>'}

      ${PROD ? `<script>${manifest.text}</script>` : ''}

      <script>${thirdPartyScripts.facebookPixel}</script>

      <script async src="${thirdPartyScripts.googleAnalyticsSrc}"></script>
      ${PROD ? `<script src="${vendor.js}"></script>` : ''}
      <script src="${PROD ? app.js : './static/app.js'}"></script>
    </body>
    </html>`;

  res.send(html);
}

另外,如果有帮助的话,我正在使用 React Router v4。

4

1 回答 1

6

前一周我找到了解决方案,并认为我也可以更新它,以便它可以帮助其他遇到此问题的人......

好消息是它非常简单!

无论如何,对我来说,这取决于我为客户端和服务器分离了 webpack 包。因此,用外行的话来说,它包含了两次 react-helmet,一次用于客户端,一次用于服务器,这意味着客户端代码中包含元标记的所有状态都不存在于服务器上的 .rewind() 调用中。

只需将其添加到您的服务器 webpack 配置文件中

externals: ['react-helmet']

于 2017-12-08T15:24:10.777 回答