在官方文档中,它说,React will attempt to attach event listeners to the existing markup.
所以我认为如果我使用 ReactDOM.hydrate,它只会添加事件。
// server.js
app.get('/', (req, res) => {
const html = fs.readFileSync(path.resolve('./build/index.html'), 'utf8');
return res.send(
html.replace(
'<div id="root"></div>',
'<div id="root">hihi</div>',
),
);
}
// index.js
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.hydrate(
<App/>,
document.getElementById('root'),
);
// App.jsx
import React from 'react';
import styled from 'styled-components';
export default () => {
return <Title>Hi !</Title>;
};
const Title = styled.h1`
color: blue;
`;
但是,当水合物工作时,它会删除由 SSR 创建的 DOM,并将其替换为由 CSR(反应脚本)创建的 DOM
为什么会这样?