How to fetch data from local JSON file on react native?

后端 未结 7 1592
执念已碎
执念已碎 2020-12-02 10:12

How can I store local files such as JSON and then fetch the data from controller?

7条回答
  •  Happy的楠姐
    2020-12-02 11:02

    The following ways to fetch local JSON file-

    ES6 version:

    import customData from './customData.json'; or import customData from './customData';

    If it's inside .js file instead of .json then import like -

    import { customData } from './customData';
    

    for more clarification/understanding refer example - Live working demo

提交回复
热议问题