提问人:Jefter Rocha 提问时间:1/16/2020 更新时间:1/16/2020 访问量:38
它有可能用 ReactJS 处理 JSON 文件吗?
Its possbile handle a JSON file with ReactJS?
问:
我正在开发一个解决方案,以应对一家公司向我提出的挑战。任务是开发一个 ReactJS 应用程序,它需要将一些数据存储在 JSON 文件中,但很快就需要构建一些服务或 API,只是一个 ReactJS 应用程序,据我所知它不可能在客户端处理文件(写入)。
答:
0赞
DPCII
1/16/2020
#1
要设置:
let jsonObj = {"name": "Bob", "age": 100}
localStorage.setItem('userList', JSON.stringify(jsonObj))
要检索:
console.log(JSON.parse(localStorage.getItem('userList')))
// {name: "Bob", age: 100}
你也可以尝试这个链接来实现 React: https://programmingwithmosh.com/react/localstorage-react/
评论