next.js 在严格模式下使用“UNSAFE_componentWillMount”,但我不确定问题出在哪里

eimct9ow  于 2023-02-15  发布在  其他
关注(0)|答案(1)|浏览(119)

我有一个 Next.js 应用程序,当运行时,在浏览器控制台上给我这个问题。

Warning: Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move code with side effects to componentDidMount, and set initial state in the constructor.

Please update the following components: SideEffect(NullComponent)

我不确定SideEffect(NullComponent)是什么,并且搜索了我项目中的所有文本也没有返回任何结果。因此,我不确定问题是从哪里来的,以便尝试解决它,或者能够在这里提供一些相关的代码。

此错误意味着什么?我如何至少找到导致此问题的文件?

dced5bon

dced5bon1#

您看到的错误很可能位于您正在使用的软件包中

尝试搜索整个项目(包括node_modules文件夹)或更仔细地查看控制台错误(生成错误的文件名)。
这样你就知道哪个软件包使用了过时的代码,并决定保留它或更新它或使用另一个类似的软件包。
搜索包括node_modules在内的整个项目

相关问题