ReactJS - renderToString() 方法



将 React 组件渲染到 HTML 是一个常见的操作,尤其是在处理服务器端渲染 (SSR) 时。这可以通过使用 renderToString 方法来实现。

什么是 renderToString?

React 的 renderToString 函数将 React 组件渲染成 HTML 字符串。在服务器上,它主要用于在将我们的 React 应用提供给客户端作为初始服务器响应的一部分之前预渲染我们的 React 应用。这意味着我们的网站加载速度更快,并且更易于搜索引擎优化。

语法

renderToString(reactNode)

参数

reactNode − 要渲染到 HTML 的 React 节点。例如 <App />。

返回值

它返回一个 HTML 字符串。

示例

示例 - 问候应用

在这个代码中,我们将创建一个名为 Greetings 的 React 组件来显示简单的问候消息。它将使用服务器端渲染将组件转换为 HTML 字符串并将该字符串记录到控制台。执行时,我们将看到 Greetings 组件的初始 HTML 表示,其中包含欢迎标题和鼓励使用 React 进行构建的消息。

// Import necessary modules
const React = require('react');
const ReactDOMServer = require('react-dom/server');

// Define a component with greetings
const Greetings = () => (
   <div>
      <h1>Welcome to React!</h1>
      <p>Hope you enjoy building with it.</p>
   </div>
);
export default Greetings;

// Render the component to a string
const htmlString2 = ReactDOMServer.renderToString(<Greetings />);

// Log the result
console.log(htmlString2);

输出

welcome to react

示例 - 计数器应用

在这个应用中,我们将创建一个 React 组件 (Counter),它表示一个带有递增按钮的简单计数器。它将使用服务器端渲染将组件转换为 HTML 字符串并将该字符串记录到控制台。执行时,我们将看到 Counter 组件的初始 HTML 表示,计数为 0。

// Import necessary modules
const React = require('react');
const ReactDOMServer = require('react-dom/server');

// Define a component with a simple counter
class Counter extends React.Component {
   constructor() {
      super();
      this.state = { count: 0 };
   }   
   render() {
      return (
         <div>
            <h1>Counter: {this.state.count}</h1>
            <button onClick={() => this.setState({ count: this.state.count + 1 })}>
               Increment
            </button>
         </div>
      );
   }
}
export default Counter;

// Render the component to a string
const htmlString3 = ReactDOMServer.renderToString(<Counter />);

// Log the result
console.log(htmlString3);

输出

counter 3 increment

示例 - 服务器和客户端

我们可以通过两种不同的方式使用 renderToString:第一种是在服务器上,第二种是在客户端。因此,我们将逐一讨论这两种方式。

在服务器上

首先,我们将从 'react-dom/server' 中导入 renderToString 方法。并使用它将我们的 React 应用渲染到 HTML。

import { renderToString } from 'react-dom/server';
const html = renderToString(<App />);

在客户端

我们需要一个单独的函数,例如 hydrateRoot,才能使服务器生成的 HTML 具有交互性。

首先,验证我们的响应是否包含服务器渲染的 HTML,并且我们是否包含了在客户端加载我们的 React 组件和 hydrateRoot 所需的脚本。

服务器端渲染 (Node.js/Express)

import express from 'express';
import React from 'react';
import { renderToString } from 'react-dom/server';
import App from './App'; // Import the main React component

const app = express();
app.get('/', (req, res) => {
   
   // Server-side rendering
   const html = renderToString(<App />);
   res.send(`
      <!DOCTYPE html>
      <html>
      <head>
         <title>Server-Side Rendering</title>
      </head>
      <body>
         <div id="root">${html}</div>
         <script src="/client.js"></script>
      </body>
      </html>
   `);
});

app.listen(3000, () => {
   console.log('Server is running on https://127.0.0.1:3000');
});

客户端 (client.js)

import React from 'react';
import { hydrateRoot } from 'react-dom'; // Import hydrateRoot
import App from './App'; // Import the main React component

// Find the root element
const rootElement = document.getElementById('root');

// Hydrate the server-rendered HTML
hydrateRoot(rootElement, <App />);

使用此方法,我们可以实现服务器端渲染,同时使内容在客户端具有交互性,结合两种方式的优点。

局限性

  • React Suspense 仅部分支持 renderToString。如果组件等待数据,renderToString 会立即发送其回退内容作为 HTML。

  • 虽然它可以在浏览器中使用,但不建议将其用于客户端应用程序。客户端渲染有更好的选择。

总结

renderToString 是一个有用的 React 方法,用于在服务器端将我们的组件更改为 HTML,从而提高网站性能和搜索引擎优化。请记住,它可能不是客户端代码的最佳选择。

reactjs_reference_api.htm
广告