无法写出对象中键的值,但我可以控制台记录它

时间:2017-09-29 16:24:42

标签: react-native react-native-android

我正在React Native做一些工作,目前我正在通过API来检索一些数据。我将数据存储在我的状态,看起来像这样

{
    "id": "847469",
    "name": "Allsvenskan",
    "tournamentFK": "11075",
    "gender": "male",
    "countryFK": "6",
    "startdate": "2017-03-31T22:00:00+00:00",
    "enddate": "2017-11-05T20:00:00+00:00",
    "n": "2",
    "ut": "2017-06-20T13:02:07+00:00",
    "country_name": "Sweden",
}

我尝试了类似

的内容
return Object.keys(this.state.tournament).forEach(key => (
    <Text key={key}>
      {console.log(this.state.tournament[key])}
      {this.state.tournament[key]}
    </Text>
);

console.log完美运行。我可以看到每个键的每个值。 但是,我无法打印出来。我的手机上看不到任何东西。这也与颜色无关,因为我可以看到其他文字。

任何线索?

0 个答案:

没有答案