react使用
liguoyuan819
这个作者很懒,什么都没留下…
展开
-
react中使用ant组件库的modal弹窗报错
在react项目中使用ant-design库中的modal弹窗控制台报错 findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of DomWrapper3 which is inside StrictMode. 问题根因: react脚手架中开启了严格模式,限制代码书写规范。在ant-design组件库中使用了CSSTransition,但是CSSTransition中的部分代码的写法对于react原创 2022-05-06 16:06:44 · 1851 阅读 · 0 评论 -
react报错Functions are not valid as a React child. This may happen if you return a Component instead o
react报错 Functions are not valid as a React child. This may happen if you return a Component instead of <Component> react渲染路由组件时,循环遍历使用route展示对应的组件,element里面写对应的组件时,如果直接用element={route.component}会报错,这时不会将route.component渲染成组件,而应该写成element={<route.c原创 2022-04-19 10:23:35 · 4622 阅读 · 1 评论