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

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

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

7条回答
  •  醉酒成梦
    2020-12-02 10:47

    Since React Native 0.4.3 you can read your local JSON file like this:

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

    and then access customData like a normal JS object.

提交回复
热议问题