我的反应技巧是基本的,我试图从没有数组的json中获取特定的键值:
<Text>{category_title[0]}</Text>
Json输出
[
{
"post_id": 1,
"category_title": "Football,Sports,LaLiga,Real Madrid"
}
]
致电Json
componentDidMount() {
return fetch(ConfigApp.URL+'json/data_categories.php?post='+this.props.navigation.state.params.item)
.then((response) => response.json())
.then((responseJson) => {
this.setState({
isLoading: false,
dataSource: responseJson
}, function() {
});
})
.catch((error) => {
console.error(error);
});
}