您的位置:首页 > Web前端 > React

ERROR-2:React

2015-11-25 14:57 465 查看
原文链接:https://www.geek-share.com/detail/2659380926.html

「版本」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.geek-share.com/detail/2659380926.html

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: