这个ReactRouter.match()实现有什么问题? [英] What's wrong with this ReactRouter.match() implementation?

查看:222
本文介绍了这个ReactRouter.match()实现有什么问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过express从我的服务器提供React.

I'm trying to serve up React from my server via express.

但是,当我命中localhost:3000时,我遇到的错误是:

The error I'm getting, though, when I hit localhost:3000 is:

TypeError: (0 , _reactRouter.match) is not a function
    at /Users/chris/code/affordance/app/server.js:20:3

以下是server.js文件:

Here's the server.js file that does that:

import path from 'path';
import { Server } from 'http';
import Express from 'express';
import React from 'react';
import { renderToString } from 'react-dom/server';
import { match, RouterContext } from 'react-router';
import routes from './routes';
import NotFoundPage from './components/NotFoundPage';

// Initialize the express server, and tell it to use ejs
const app = new Express();
const server = new Server(app);
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));

// Tell express where the static assets are
app.use(Express.static(path.join(__dirname, 'static')));

app.get('*', (req, res) => {
  match(
    { routes, location: req.url },
    (err, redirectLocation, renderProps) => {

      if (err) {
        return res.status(500).send(err.message);
      }

      if (redirectLocation) {
        return res.redirect(302, redirectLocation.pathname + redirectLocation.search);
      }

      let markup;
      if (renderProps) {
        markup = renderToString(<RouterContext {...renderProps}/>);
      } else {
        markup = renderToString(<NotFoundPage/>);
        res.status(404);
      }

      return res.render('index', { markup });
    }
  );
});

const port = process.env.PORT || 3000;
const env = process.env.NODE_ENV || 'production';
server.listen(port, err => {
  if (err) {
    return console.error(err);
  }
  console.info(`Server running on http://localhost:${port} [${env}]`);
});

据我所知,我正在以其他方式使用它的方式导入它(例如,

So as far as I can tell, I'm importing it the way I see it used elsewhere (for instance, here).

我丢失了一些东西,我不知道接下来该怎么猜.我在做什么错了?

I'm missing something, and I don't know what to guess or think next. What am I doing wrong?

ps-react-router版本为4.0.0,匹配文档位于此处

ps - react-router is at version 4.0.0, docs for match are here

推荐答案

如果您在v4之前使用React Router,您的代码看起来正确,但是react-router v4在整个代码库中都有重大更改,包括服务器渲染方法.在v4中,有一个专门用于服务器渲染的新组件-StaticRouter.

Your code looks correct if you used react router prior to v4, but react-router v4 has breaking changes throughout the codebase, including the method for server rendering. In v4, there is a new component specifically for server rendering - StaticRouter.

您的代码在v4中应如下所示:

Your code should looks something like this with v4:

import path from "path";
import { Server } from "http";
import Express from "express";
import React from "react";
import { renderToString } from "react-dom/server";
import { StaticRouter } from "react-router";
import App from "./app";
import NotFoundPage from "./components/NotFoundPage";

// Initialize the express server, and tell it to use ejs
const app = new Express();
const server = new Server(app);
app.set("view engine", "ejs");
app.set("views", path.join(__dirname, "views"));

// Tell express where the static assets are
app.use(Express.static(path.join(__dirname, "static")));

app.get("*", (req, res) => {
  // This context object contains the results of the render
  const context = {};

  const html = renderToString(
    <StaticRouter location={req.url} context={context}>
      <App />
    </StaticRouter>
  );
  res.status(200).send(html);
});

const port = process.env.PORT || 3000;
const env = process.env.NODE_ENV || "production";
server.listen(port, err => {
  if (err) {
    return console.error(err);
  }
  console.info(`Server running on http://localhost:${port} [${env}]`);
});

这里非常好EbayTech的带注释的文章显示了如何使用StaticRouter(用于服务器)和BrowserRouter(用于客户端)设置应用程序

Here is a really nice annotated article by EbayTech showing how to set up an app with StaticRouter(for server) and BrowserRouter(for client)

这篇关于这个ReactRouter.match()实现有什么问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆