Nested React Native projects result in TypeError: undefined is not an object (evaluating self.fetch)
See original GitHub issueI’m unsure how related this is to #5667 or #3975 but I’ve been trying to figure this out for 5 hours.
Here’s the repo: https://github.com/bloveit/react-native-redux-navigation
I’m trying to create a React Native example for this module but there is an error that occurs when trying to run the example.
To reproduce:
git clone https://github.com/bloveit/react-native-redux-navigation.git
cd react-native-redux-navigation
npm i
cd examples/TabsExample
npm i
react-native run-ios
I tried to pinpoint the error to a specific package, but no luck. I also tried nesting other React Native projects but the bug didn’t happen (it seems to be an edge case).
Would greatly appreciate some insight on this bug!
Screenshot:
Thanks! 🍺
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:18 (3 by maintainers)
Top Results From Across the Web
Fetching nested data, undefined is not an object
When I'm trying to access ones nested under categories, I get an error: undefined is not an object (evaluating 'this.state.data.order.name' ) .
Read more >undefined is not an object (evaluating 'process.version.split ...
I understand it is normally only available under node. TypeError: undefined is not an object (evaluating 'process.version.split'). I am using 'react-native-get- ...
Read more >undefined is not an object (evaluating 'state.routes.find')-Reactjs
Coding example for the question TypeError: undefined is not an object (evaluating 'state.routes.find')-Reactjs.
Read more >Node.js v19.3.0 Documentation
Native abstractions for Node.js; Node-API; Addon examples. Function arguments; Callbacks; Object factory; Function factory; Wrapping C++ objects ...
Read more >[React Native] TypeError: undefined is not an object ...
I am getting this error while trying to call sb.connect() TypeError: undefined is not an object (evaluating 'Vn.of(this._iid).fetch').
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@migueloller Hey I got it working using RN 0.33 and doing a hack - following this project:
https://github.com/johanneslumpe/react-native-browser-polyfill
Specifically, I added the following to my app.js:
global.self = global;
I added it right at the top. Now my fetches are working properly again. Seems like a dirty hack but I was a bit desperate to get it going on iOS10 and now it’s running again.
Actually I had to do this:
because when debuging remotely I was getting: “cannot assign to read only property ‘self’ of object '#<DedicatedWorkerGlobalScope>?”