user503400 Asked:2023-06-08 22:33:44 +0800 CST2023-06-08 22:33:44 +0800 CST 2023-06-08 22:33:44 +0800 CST 为什么 componentDidMount 运行两次? 772 我不明白为什么 componentDidMount 运行两次? class Example extends React.Component { constructor(props) { super(props); this.state = { count: 0, }; console.log("constructor"); } componentDidMount() { console.log("componentDidMount"); } render() { console.log('render'); return ( <div> <p> Тест </p> </div> ); } } javascript 1 个回答 Voted Best Answer Pîrnău Artemie 2023-06-09T01:57:23+08:002023-06-09T01:57:23+08:00 尝试从 index.js 中删除<StrictMode>or标签<React.StrictMode>。
尝试从 index.js 中删除
<StrictMode>
or标签<React.StrictMode>
。