我听说严格模式通过抛出生命周期方法删除警告,有助于以最佳实践方式编写 React 代码。
我从https://medium.com/@baphemot/whats-new-in-react-16-3-d2c9b7b6193b读到它
我的理解正确吗?严格模式有多有效?是不是只针对不安全的生命周期方法?如果不能,我可以在功能组件中使用此功能吗?
import { StrictMode} from “react”;
class Test extends Component{
render(
<StrictMode>
//Some other child component which has all lifecycle methods implemented in it
</StrictMode>
);
}