美文网首页
React中使用antd-mobile组件库中的跑马灯组件报错严

React中使用antd-mobile组件库中的跑马灯组件报错严

作者: it筱竹 | 来源:发表于2020-07-01 17:24 被阅读0次

通过ceact-react-app搭建的React项目,在使用antd-mobile组件库中的Carousel(跑马灯)组件时,报如下错误:

image
<font color="red">Warning: A string ref, "slider", has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead. Learn more about using refs safely here:</font > https://fb.me/react-strict-mode-string-ref
<font color="red">
Warning: A string ref, "frame", has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead. Learn more about using refs safely here: </font > https://fb.me/react-strict-mode-string-ref

(该报错并不影响项目的运行以及跑马灯的效果)

根据报错信息的提示:一个字符串ref,“slider”,已经在一个严格的模式树中找到。说明在React中使用的是严格模式了。

然后自然就想到了 React中的严格模式(Strict Mode)

image
根据以上信息,找到项目src目录中的index.js,删除掉该 <React.StrictMode>标签即可。如下图所示:
image
报错即可完美解决。 ؏؏☝ᖗ乛◡乛ᖘ☝؏؏

相关文章

网友评论

      本文标题:React中使用antd-mobile组件库中的跑马灯组件报错严

      本文链接:https://www.haomeiwen.com/subject/kgjhqktx.html