在 React Native 的本地存储文件中写入 JSON 的最佳方法是什么

发布于 2025-01-11 15:02:26 字数 338 浏览 0 评论 0原文

我目前正在为移动应用程序(仅前端)进行新设计。在项目中我需要使用状态来更改按钮的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅沫记忆 2025-01-18 15:02:26

为了读取和写入 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文