不推荐使用componentWillMount,将其删除

时间:2018-04-17 08:02:54

标签: react-native

我不使用componentWillMount方法,但我仍然收到警告。这让我感到很麻烦。伙计们,帮助我! 反应原生0.55 Warning: componentWillMount is deprecated and will be removed in the next major version. Use componentDidMount instead. As a temporary workaround, you can rename to UNSAFE_componentWillMount.

1 个答案:

答案 0 :(得分:1)

烨..

在React componentWillMount的未来版本中,将多次调用,因此您应该将componentDidMount用于网络请求。

而是使用" UNSAFE_componentWillMount()"

注意

此生命周期以前名为componentWillMount。该名称将继续有效,直到第17版。

用于自动更新组件。

rename-unsafe-lifecycles codemod