我们有一个react应用程序在除IE11(11.0.9)之外的所有浏览器上都能正常运行。 React Application甚至不会在IE11上加载,因为在react-dom / lib / ReactDOMComponent.js @ line 405中,hostContainerInfo始终为null。虽然Chrome和firefox总是为hostContainerInfo获得适当的值。
mountComponent: function (transaction, hostParent, hostContainerInfo, context) {
this._rootNodeID = globalIdCounter++;
this._domID = hostContainerInfo._idCounter++;
我得到的错误是:
Unable to get property '_idCounter' of undefined or null reference
使用的版本: 反应/反应:15.4.1
尝试降级对15.3.2的反应并将其升级为15.4.1,但问题仍然存在。
任何有关如何解决此问题的指导都会非常有帮助。感谢。