-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot set property 'parentContext' of undefined #110
Comments
Try adding breakpoint at this line, and check whether |
vcomponent.type is valid. It is set to a component of this external package - https://github.com/Pomax/react-onclickoutside Here is the debug session screenshot |
OK. Can you add a simple code example to reproduce this problem? |
I got the same exception a few days ago and I fixed it after adding "key" prop for and of antd. Maybe you can check whether there are some elements created by the same component and having the same parent but do not have "key" prop. "react-lite just follow the best practice of React."XD I'm wrong, just forget the above comment...The exception still exists...I tried to traceback with chrome dev tools tonight, it shows that the code using createReactClass will trigger this exception, "$cache" prop in ReactComponent is initialized in constructor...However, ReactClassComponent.prototype used by createReactClass only mixin ReactComponent.prototype and never call the constructor of ReactComponent...I'm working on it, maybe I can give you a PR tomorrow. @Lucifier129 |
@ChieveiT Great! |
@Lucifier129 |
@drcmda It seems like the constructor of super class was not invoked, so |
i has the same error: beside,this page use react-router,and other pages(no router) work sucessfully |
I have gotten the same error verbatim. The likely difference in my setup from others is that I am using electron. I am uncertain if this would impact react-lite in anyway? Has a solution been reached for this issue or simply an explanation? |
I am getting this error with
react-lite
. The app works fine withreact
andreact-dom
. Any suggestions what could be wrong?The text was updated successfully, but these errors were encountered: