gpt4 book ai didi

android - 如何在 React Native 中从 Json 获取数据后在 View 上显示数据

转载 作者:行者123 更新时间:2023-11-30 01:22:52 25 4
gpt4 key购买 nike

我有一个来自 fetch 方法的 json 输出,类似于这种格式

{ 
"example": {
"id": "301",
"example_n": "example",
"exampleid": "12",
"thumbnail": "some url",

"examplearry": [
{
"example_id": "9",
"exampletitle": "exampletitle ",

},
{
"example_id": "10",
"exampletitle": "exampletitle",

},
{
"example_id": "7",
"exampletitle": "exampletitle",


}, "example_api": "6vvdncv99hbnbscm"
}

现在我想访问 example_id 和 exampletitle。如何在 React Native 中使用?

最佳答案

可以看看怎么做here .

实现类似于他们拥有的 fetchData 方法:

fetchData() {
fetch(REQUEST_URL)
.then((response) => response.json())
.then((responseData) => {
this.setState({
examplearry: responseData.examplearry,
});
})
.done();
}

这将处理您的 json 响应,然后使用 this.setState,您可以使您的数据可用。在此之后,只需像在 javascript/react 中一样访问示例。本教程还展示了如何在下一步中详细执行此操作。

关于android - 如何在 React Native 中从 Json 获取数据后在 View 上显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36838083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com