gpt4 book ai didi

javascript - 如何使用 React Native + React Redux 在嵌套 JSON API 中映射数组?

转载 作者:行者123 更新时间:2023-12-01 02:46:39 26 4
gpt4 key购买 nike

this 可能重复

首先,如果这个问题看起来很愚蠢,我很抱歉,但我真的需要一些帮助。我的问题是我可以说与我上面粘贴的问题链接部分相同。

我有一个像这样的 JSON 响应

{
"timestamp": 1510222037,
"verb": "GET",
"object": "route",
"data": {
"houseGeoJSON": {
"type": "FeatureCollection",
"features": [
{
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
101.60808563232422,
3.1660120732795227
],
[
101.60975933074951,
3.1649818312001101
],
[
101.6114330291748,
3.164983676545967
],
[
101.6114330291748,
3.166054929292111
],
[
101.60933017730713,
3.1668283292030202
],
[
101.60847187042236,
3.1666976705346896
],
[
101.60808563232422,
3.1660120732795227
]
]
]
},
"type": "Feature",
"properties": {}
}
]
},
"description": "Property",
"id": 1,
"houseType": "Apartment",
"name": "First House"
}
}

现在我尝试迭代此 JSON 响应并在我的应用程序的页面上呈现该值。

以下是该页面的代码。

import React, { Component } from 'react';
import { View, Text, ScrollView } from 'react-native';
import { Card, Button } from 'react-native-elements';
import { connect } from 'react-redux';

class RouteScreen extends Component {

onButtonPressClose = () => {
this.props.navigation.navigate('Home');
}

render() {
const houseInfo = this.props.houses.map(function (item) {
return (
<View>
<Text>Name: {this.props.houses.name}</Text>
<Text>Description: {this.props.houses.description}</Text>
<Text>ID: {this.props.houses.id}</Text>
<Text>Coordinates: {item.houseGeoJSON.features.geometry.coordinates}</Text>
</View>
);
});
return (
<ScrollView>
<Card>
<View>
{ houseInfo }
</View>
</Card>

<Card>
<Button
small
title="Back"
backgroundColor="#94b8b8"
onPress={this.onButtonPressClose}
/>
</Card>

</ScrollView>
);
}
}

function mapStateToProps({ houses }) {
return { houses: houses.data };
}

export default connect(mapStateToProps)(RouteScreen);
  • 改编 self 粘贴的链接。

这给了我错误:TypeError: this.props.houses.map is not a function

我想问一下我的方向正确吗?如果没有,请建议我在这段代码中遗漏了什么。

感谢您的帮助和建议。我真的很感激。

最佳答案

第一个问题是,我所看到的 this.props.houses 是一个对象而不是数组。您只能在数组上使用 map

第二个问题,item.houseGeoJSON.features是一个数组而不是一个对象。

所以我有两个解决方案给你,

如果你想用一个房子名称显示所有坐标,你可以像下面这样做,

   render() {
const houseInfo = this.props.houses.map(function (item) {
return (
<Text>
{`Coordinates: ${item[0]}-${item[1]}`}
</Text>
);
}.bind(this));
return (
<ScrollView>
<Card>
<View>
<Text>Name: {this.props.houses.name}</Text>
<Text>Description: {this.props.houses.description}</Text>
<Text>ID: {this.props.houses.id}</Text>
{ houseInfo }
</View>
</Card>

<Card>
<Button
small
title="Back"
backgroundColor="#94b8b8"
onPress={this.onButtonPressClose}
/>
</Card>

</ScrollView>
);
}

如果您想查看每个坐标的软管名称,则可以执行如下操作;

    const houseInfo = this.props.houseshouseGeoJSON.features[0].geometry.coordinates.map((item) => {
return (
<View>
<Text>Name: {this.props.houses.name}</Text>
<Text>Description: {this.props.houses.description}</Text>
<Text>ID: {this.props.houses.id}</Text>
<Text>{`Coordinates: ${item.[0]}-${item[1]}`}</Text>
</View>
);
});

关于javascript - 如何使用 React Native + React Redux 在嵌套 JSON API 中映射数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47215993/

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