我是React-Native的新手。 我能够从服务器解析我的json数据,但我想将这些数据保存在模态类中,就像我们在iOS中使用NSObject类一样。
任何人都可以帮助我解决这个问题,我可以解析json数据并将所有这些数据存储在一个模态类中,然后在UserDefaults中存储该模态类。
先谢谢。
答案 0 :(得分:0)
您可以像这样解析json响应
constructor(props) {
super(props)
this.state = {
arrayName: [],
}
}
return fetch('url')
.then((response) => response.json()).then((responseJson) => {
this.setState({
arrayName: responseJson,
});
}).catch((error) => {
console.error(error);
});