gpt4 book ai didi

reactjs - ReactDOMServer.renderToString() - 它到底是做什么的?

转载 作者:行者123 更新时间:2023-12-03 20:43:21 25 4
gpt4 key购买 nike

我知道它只是将 HTML 呈现为文本,所以说到类组件,只有 contructor()render()renderToString() 期间调用方法.但是我注意到了一些关于函数组件的奇怪行为。考虑以下组件示例:


function MyComponent() {

console.log(1);

return(
<React.Fragment>
Some text
</React.Fragment>
)
}

我只是用 console.log()在函数组件内部,我猜这相当于 constructor()类组件内部的方法。 renderToString()在快速路由处理程序中调用:
import { ServerStyleSheets, ThemeProvider } from '@material-ui/core/styles';
import express from 'express';
import React from 'react';
import { renderToString } from 'react-dom/server';
import theme from 'mui/theme';
import App from 'components/App';

const SERVER_PORT = 8081; // Port for Express to listen

const app = express();

app.get('*', async (req, res) => {
const sheets = new ServerStyleSheets();

const inlineApp = renderToString(
sheets.collect(
<Provider store={exampleStore}>
<ThemeProvider theme={theme}>
<CssBaseline />
<App />
</ThemeProvider>
</Provider>,
),
);

const css = sheets.toString();

const renderedHTML = `
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style id="jss">${css}</style>
<title>Repl.it</title>
</head>
<body>
<div id="root">${inlineApp}</div>
<script>
window.STATE = ${JSON.stringify(exampleStore.getState())};
</script>
<script src="app.js"></script>
</body>
</html>
`;

res.send(renderedHTML);
});

app.listen(SERVER_PORT, () => {
console.log(`Listening at http://localhost:${SERVER_PORT}`);
});
问题是我在调用 ReactDOMServer.renderToString() 时两次获得控制台输出一次。我不在服务器端使用双重渲染。
所以我有两个问题:
  • 你能解释一下这里到底发生了什么吗?
  • 如果这是一个正确的行为,那么有没有办法在 renderToString() 期间只运行一些代码一次?
  • 最佳答案

    这里发生的事情可能是 React 的 Strict 模式的作用。
    React 应用程序在严格模式下运行时,故意重复调用某些函数(例如在这种情况下组件的构造函数),以便在开发阶段更容易发现和识别容易遗漏的副作用,这可能会在生产中产生问题.
    您可以在此处详细了解 react 严格模式 - Strict Mode
    然而,重要的是要知道严格模式仅在开发环境中而不是在生产环境中双重调用函数。

    关于reactjs - ReactDOMServer.renderToString() - 它到底是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66390315/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com