React Nativeのfetchコマンドを使用して、Github APIからいくつかの情報を取得しています。React Native - オブジェクトが反応する子として有効ではありません
class Dashboard extends React.Component{
render(){
return(
<View style={styles.container}>
<Text> This is the dashboard </Text>
<Text> {this.props.userInfo} </Text>
</View>
)
}
};
それは文句と私は、このエラー与えている:
ExceptionsManager.jsを:
は、私は、JSONの情報を表示するようになっているダッシュボードを持っている61個のオブジェクトが反応子として有効ではありません(見つかったもの:キー付きオブジェクト(ログイン、ID、avatar_url、gravatar_id、url、html_url、followers_url、following_url、gists_url、starred_url、subscriptions_url、organizations_url、repos_url、events_url、received_events_url、type、site_admin、 bio_public_repos、public_gists、followers、following、created_at、updated_at})。子コレクションをレンダリングする場合は、代わりに配列を使用するか、ReactアドオンのcreateFragment(オブジェクト)を使用してオブジェクトをラップします。レンダリング方法がText
であることを確認します。
文脈については、これはegghead.ioに関連しているようです。具体的なレッスン6:https://egghead.io/lessons/react-06-react-native-passing-data-when-changing-routes – nikolasleblanc