我想制作 useEffect 方法,该方法在任何props更改时调用,但不是所有代码,只有一个专用于此props
我想象这样的事情......在这一刻,所有的代码都被称为一、二或三发生了变化。
const SomethingComponent = (props: any) => {
const {one, two, three} = props;
useEffect(() => {
if(something for one props){
code for one
}
if(something for two props){
code for two
}
if(something for three props){
code for three
}
}, [one, two, three]);
}