StaticRouter无法在服务器渲染中使用动态路由

时间:2019-07-03 13:27:26

标签: node.js reactjs react-router isomorphic-javascript server-rendering

我在路线中有一个动态参数。当我直接打开URL时,会引发错误。

在服务器渲染中使用静态路由器使服务器知道我正在使用的路由。

这是我的服务器渲染代码:

const serverRender = (req, res) => {
  const routes = [
    {
        path: '/',
        exact: true,
        component: Signin
    }
    {
        path: '/shared/:id',
        component: Shared,
        fetchInitialData: path => sharedInitialData(path)
    }
  ];

    const activeRoute = routes.find(route => matchPath(req.url, route)) || {}

    const promise = activeRoute.fetchInitialData ? activeRoute.fetchInitialData(req.path) : Promise.resolve()

    const theme = createMuiTheme({
        palette: {
            primary: blue
        },
        typography: {
            useNextVariants: true
        }
    });

    const sheets = new ServerStyleSheets();

    promise.then(data => {
        const app = renderToString(
            sheets.collect(
                <ThemeProvider theme={theme}> 
                    <Provider store={store}>
                        <StaticRouter location={req.url} context={{data}}>
                            <App />
                        </StaticRouter>
                    </Provider>
                </ThemeProvider>
            )
        )

        const css = sheets.toString();
        res.send(renderFullPage(app, css))
    })
    .catch(error => console.log(error));
}


const renderFullPage = (html, css) => `
    <!DOCTYPE html>
    <html>
        <head>
            <style>
                a{
                    text-decoration: none;
                    color: #000
                }
                ${css}
            </style>
        </head>
        <body>

            <div id="root">${html}</div>

            <script src="main.js"></script>

        </body>
    </html>
`


async function sharedInitialData(path) {
  const id = path.split('/').pop();
  return id;


}

当我打开/ shared / 12345时,出现控制台错误。 未捕获到的SyntaxError:意外令牌

main.js是我的webpack生成的捆绑文件

我的捆绑文件中填充了HTML而不是js。我认为这是问题所在

1 个答案:

答案 0 :(得分:1)

我认为问题在于您在<script>中给定的renderFullPage()中的路径。我认为您的main.js无法访问。您可以尝试在路径中添加斜杠(/)吗?

尝试将<script src="main.js"></script>更改为<script src="/main.js"></script>