11

这基本上是我所有的代码。我正在运行 Hapi 并尝试使用 react-loadable 来服务器渲染我的 React 应用程序。

我在这里的代码中添加了很多缺失的部分。

const location = req.url.pathname
const context = {}
const modules = []

const Router = () => (
  <Switch>
    <Route exact path="/" component={Home} />
    <Route path="/login" component={Login} />
    <Route path="/me" component={Profile} />
    <Route component={NotFound} />
  </Switch>
)

const App = () => (
  <StaticRouter location={location} context={context}>
    <main>
      <Header />
      <Router />
      <Footer />
    </main>
  </StaticRouter>
)

const preloadables = [ Home, Login, Profile, NotFound ]
await Promise.all(preloadables.map(preloadable => preloadable.preload()))

const html = ReactDOMServer.renderToString(
  <Loadable.Capture report={moduleName => modules.push(moduleName)}>
    <App/>
  </Loadable.Capture>
)

// render html

它正确地呈现页面,因为我看到我的 React 应用程序在我的浏览器中呈现。尽管除非我禁用服务器上的缓存,否则我看不到“路由器”的任何内容。所以第一个请求没有渲染路由器,下面的请求渲染了。

在服务器上,总是console.log('modules:', modules)返回modules: []。不管缓存。因此,即使我禁用缓存,刷新页面两次以查看路由器工作,模块仍然是空的。

npm run start:server
Warning: setState(...): Can only update a mounting component. This usually means you called setState() outside componentWillMount() on the server. This is a no-op.

Please check the code for the LoadableComponent component.
modules []
modules []
modules []
modules []
modules []

我有点迷茫,因为它应该可以工作..一切看起来都很好。

4

2 回答 2

4

今天经过不知何故苦苦挣扎,终于解决了。

在获得模块之前,您必须正确编写可加载组件。官方文档在这里声明

Loadable({
  loader: () => import('./Bar'),
  modules: ['./Bar'],
  webpack: () => [require.resolveWeak('./Bar')],
});

或者你可以使用提供的 babel 插件。但是,就我而言,我正在使用 ts-node 并且没有运气使用该 babel 插件,因此只有选项 1 可用。

写在这里是为了有人会遇到类似的问题。

(pslodable-component也依赖于 babel 插件)

于 2019-03-01T08:21:06.563 回答
2

似乎即使您加载了组件, react-loadable 也不知道它们。

如果您使用Loadable.preloadAll而不是以编程方式加载组件,它应该可以解决您的问题。

当路由数量增加时,您当前的方法也会变得非常冗长,您将不得不维护可预加载列表。

于 2018-10-11T11:37:15.237 回答