How to fetch data from local JSON file on React Native?

Technology CommunityCategory: React NativeHow to fetch data from local JSON file on React Native?
VietMX Staff asked 3 years ago

Option 1:

const customData = require('./customData.json');

and then access customData like a normal JS object.

Option 2:

For ES6/ES2015 you can import directly like:

// app.js
import * as data from './example.json';
const word = data.name;
console.log(word); // output 'testing'