在 React Native 的本地存储文件中写入 JSON 的最佳方法是什么
我目前正在为移动应用程序(仅前端)进行新设计。在项目中我需要使用状态来更改按钮的CSS。如果按钮已更改,下次刷新应用程序时,状态应与您离开时的状态相同。
这就是为什么我有一个本地存储的 JSON 文件,其结构与应用程序当前数据库的结构相同。阅读它没有问题,但我无法让写作发挥作用。
如何读取 JSON:
const jsonData = require('../data.json')
function GetBaseState(id){
console.log(jsonData.bases[id].state)
}
我将如何更改 JSON 文件中的状态?
Im currently working on a new design for a mobile app (only frontend). In the project I need to use states to change the css of a button. If the button has changed, next time the app is refreshed the state should be as you left it.
That is why I have a locally stored JSON file that is structured the same as how the apps current database is. Reading it is no issue, but I can't get the writing to work.
How I read the JSON:
const jsonData = require('../data.json')
function GetBaseState(id){
console.log(jsonData.bases[id].state)
}
How would I go about changing that state in the JSON file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了读取和写入 Json 文件,您可以使用 react-native-fs。例如,通过 readFile 方法,您可以读取 json 文件,并通过 writeFile 方法在本地存储中写入 json 文件。
react-native-fs 有很好的文档,您可以阅读它们以获取更多信息和用法。
In order to both of reading and writing Json file , you are able to use react-native-fs. For example by readFile method you can read json file and by writeFile method writing your json file in local storage.
react-native-fs have good documents that you are able to reading that for more information and usage.