ERROR-2:React

前端之家收集整理的这篇文章主要介绍了ERROR-2:React前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

「版本」React0.142

「环境」chrome浏览器报错:

「信息」Warning: render(): Rendering components directly into document.body is discouraged,since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try rendering into a container element created for your app.

解决办法:

「原因」这个错误是在创建ReactDOM.render()时,放置的容器使用了document.body || document.getElementsByTagName('body')[0]等引起的错误,这样写会把第三方其他js给覆盖掉。

解决」避免使用body作为容器,使用其他标签作为容器,即可解决

原文链接:https://www.f2er.com/react/307481.html

猜你在找的React相关文章