有没有办法componentDidMount
通过钩子在 React 功能组件中进行模拟?
componentDidMount 等效于 React 函数/Hooks 组件吗?
对于钩子的稳定版本(React 版本 16.8.0+)
为了 componentDidMount
useEffect(() => {
// Your code here
}, []);
为了 componentDidUpdate
useEffect(() => {
// Your code here
}, [yourDependency]);
为了 componentWillUnmount
useEffect(() => {
// componentWillUnmount
return () => {
// Your code here
}
}, [yourDependency]);
所以在这种情况下,你需要将你的依赖传递到这个数组中。假设你有这样的状态
const [count, setCount] = useState(0);
每当计数增加时,您都想重新渲染您的功能组件。那么你useEffect
应该看起来像这样
useEffect(() => {
// <div>{count}</div>
}, [count]);
这样,每当您的计数更新时,您的组件都会重新渲染。希望这会有所帮助。
componentDidMount
在react-hooks中没有确切的等价物。
根据我的经验,react hooks 在开发时需要不同的思维方式,一般来说,你不应该将它与componentDidMount
.
随着中说,有办法,你可以用钩子产生类似的效果来componentDidMount
。
解决方案1:
useEffect(() => {
console.log("I have been mounted")
}, [])
解决方案2:
const num = 5
useEffect(() => {
console.log("I will only run if my deps change: ", num)
}, [num])
方案三(带函数):
useEffect(() => {
const someFunc = () => {
console.log("Function being run after/on mount")
}
someFunc()
}, [])
解决方案4(useCallback):
const msg = "some message"
const myFunc = useCallback(() => {
console.log(msg)
}, [msg])
useEffect(() => {
myFunc()
}, [myFunc])
解决方案 5(发挥创意):
export default function useDidMountHook(callback) {
const didMount = useRef(null)
useEffect(() => {
if (callback && !didMount.current) {
didMount.current = true
callback()
}
})
}
值得注意的是,只有在其他解决方案都不适合您的用例时,才应该真正使用解决方案 5。如果您确实决定需要解决方案 5,那么我建议您使用这个预先制作的钩子 use-did-mount。
来源(更多细节):在react-hooks中使用 componentDidMount
没有componentDidMount
功能组件,但是 React Hooks 提供了一种可以通过使用useEffect
钩子来模拟行为的方法。
将一个空数组作为第二个参数传递useEffect()
给仅在 mount 上运行回调。
请阅读 上的文档useEffect
。
function ComponentDidMount() {
const [count, setCount] = React.useState(0);
React.useEffect(() => {
console.log('componentDidMount');
}, []);
return (
<div>
<p>componentDidMount: {count} times</p>
<button
onClick={() => {
setCount(count + 1);
}}
>
Click Me
</button>
</div>
);
}
ReactDOM.render(
<div>
<ComponentDidMount />
</div>,
document.querySelector("#app")
);
<script src="https://unpkg.com/react@16.7.0-alpha.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.7.0-alpha.0/umd/react-dom.development.js"></script>
<div id="app"></div>
尽管接受的答案有效,但不建议这样做。当您有多个状态并且您将它与 useEffect 一起使用时,它会警告您将其添加到依赖项数组或根本不使用它。
它有时会导致问题,这可能会给您带来不可预测的输出。所以我建议你花点力气把你的函数重写为类。几乎没有变化,您可以将一些组件作为类,将一些组件作为函数。您没有义务只使用一种约定。
以这个为例
function App() {
const [appointments, setAppointments] = useState([]);
const [aptId, setAptId] = useState(1);
useEffect(() => {
fetch('./data.json')
.then(response => response.json())
.then(result => {
const apts = result.map(item => {
item.aptId = aptId;
console.log(aptId);
setAptId(aptId + 1);
return item;
})
setAppointments(apts);
});
}, []);
return(...);
}
和
class App extends Component {
constructor() {
super();
this.state = {
appointments: [],
aptId: 1,
}
}
componentDidMount() {
fetch('./data.json')
.then(response => response.json())
.then(result => {
const apts = result.map(item => {
item.aptId = this.state.aptId;
this.setState({aptId: this.state.aptId + 1});
console.log(this.state.aptId);
return item;
});
this.setState({appointments: apts});
});
}
render(...);
}
这只是举例。所以我们不要谈论代码的最佳实践或潜在问题。这两者具有相同的逻辑,但后者只能按预期工作。您可能会在此时运行 useEffect 时获得 componentDidMount 功能,但是随着您的应用程序的增长,您可能会遇到一些问题。因此,与其在那个阶段重写,不如在早期进行。
此外,OOP 也没有那么糟糕,如果面向过程编程就足够了,我们就永远不会有面向对象编程了。有时很痛苦,但更好(技术上。撇开个人问题)。
useEffect()钩子允许我们实现 componentDidMount 的功能,componentDidUpdate componentWillUnMount 功能。
useEffect() 的不同语法允许实现上述每个方法。
i) componentDidMount
useEffect(() => {
//code here
}, []);
ii) componentDidUpdate
useEffect(() => {
//code here
}, [x,y,z]);
//where x,y,z are state variables on whose update, this method should get triggered
iii) componentDidUnmount
useEffect(() => {
//code here
return function() {
//code to be run during unmount phase
}
}, []);
您可以查看官方 react 站点以获取更多信息。Hooks 上的官方 React 页面