question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Nested React Native projects result in TypeError: undefined is not an object (evaluating self.fetch)

See original GitHub issue

I’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: simulator screen shot aug 26 2016 1 39 12 am

Thanks! 🍺

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Reactions:4
  • Comments:18 (3 by maintainers)

github_iconTop GitHub Comments

16reactions
willkscommented, Sep 21, 2016

@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.

11reactions
compojoomcommented, Nov 11, 2016

Actually I had to do this:

if(typeof global.self === "undefined")
{
    global.self = global;
}

because when debuging remotely I was getting: “cannot assign to read only property ‘self’ of object '#<DedicatedWorkerGlobalScope>?”

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found