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

后端 未结 7 1579
执念已碎
执念已碎 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:56

    Take a look at this Github issue:

    https://github.com/facebook/react-native/issues/231

    They are trying to require non-JSON files, in particular JSON. There is no method of doing this right now, so you either have to use AsyncStorage as @CocoOS mentioned, or you could write a small native module to do what you need to do.

提交回复
热议问题