ERROR-2:React

原创
2015/11/25 14:57
阅读数 2K

「版本」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作为容器,使用其他标签作为容器,即可解决。


展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部