我尝试向服务器发出GET请求以检索JSON格式的产品列表。然后,我想将数据放入AsyncStorage,以便在视图中显示产品。这样做的正确方法是什么?
我研究过的内容:
on https://facebook.github.io/react-native/docs/asyncstorage.html,在示例中,他们解释了如何从AsyncStorage中检索值,而不是设置它并同时检索它
我有什么:
componentDidMount () {
this.fetchProducts()
this._loadInitialState().done();
}
_loadInitialState = async () => {
try {
var value = await AsyncStorage.getItem('products')
if (value != null) {
this.setState({products: value});
}
} catch (error) {
console.log("error setting product list");
}
}
fetchProducts() {
fetch("http://localhost:3000/products",{
method: "GET",
headers: {
'Content-Type': 'application/json'
},
})
.then((response) => (response.json()))
.then((data) => setProductList(data));
}
setProductList(json_data) {
Async.setItem('products': json_data);
}
render() {
console.log(this.state.products)
//render view
}
- > this.state.products为null,我确定服务器通过curl返回响应。我是新生的反应本地人,所以也许我的想法是关闭的。有人可以解释这样做的正确方法或建议另一种方法吗?
我所知道的 异步存储是应用程序可以放置其数据的关键值存储。此数据可以从异步存储放入对象的状态,视图将相应更新
答案 0 :(得分:5)
一旦从获取请求中获取数据,您就可以将其设置为状态,而不是设置和从异步存储中获取:
componentDidMount () {
this.fetchProducts()
}
fetchProducts() {
fetch("http://localhost:3000/products",{
method: "GET",
headers: {
'Content-Type': 'application/json'
},
})
.then((response) => (response.json()))
.then((data) => setProductList(data));
}
setProductList(json_data) {
this.setState({ products: json_data }, () => { //Here
Async.setItem('products': json_data);
}
}
render() {
console.log(this.state.products)
//render view
}