オブジェクトはReactの子として有効ではありません。子のコレクションをレンダリングする場合は、代わりに配列を使用してください。質問する

オブジェクトはReactの子として有効ではありません。子のコレクションをレンダリングする場合は、代わりに配列を使用してください。質問する

Rails バックエンドを使用して React アプリをセットアップしています。「オブジェクトは React の子として有効ではありません (見つかったオブジェクト: キー {id、name、info、created_at、updated_at} を持つオブジェクト)。子のコレクションをレンダリングする場合は、代わりに配列を使用してください。」というエラーが表示されます。

私のデータは次のようになります:

[
    {
        "id": 1,
        "name": "Home Page",
        "info": "This little bit of info is being loaded from a Rails 
        API.",
        "created_at": "2018-09-18T16:39:22.184Z",
        "updated_at": "2018-09-18T16:39:22.184Z"
    }
]

私のコードは次のとおりです:

import React from 'react';

class Home extends React.Component {

  constructor(props) {
    super(props);
    this.state = {
      error: null,
      isLoaded: false,
      homes: []
    };
  }

  componentDidMount() {
    fetch('http://localhost:3000/api/homes')
      .then(res => res.json())
      .then(
        (result) => {
          this.setState({
            isLoaded: true,
            homes: result
          });
        },
        // error handler
        (error) => {
          this.setState({
            isLoaded: true,
            error
          });
        }
      )
  }

  render() {

    const { error, isLoaded, homes } = this.state;

    if (error) {
      return (
        <div className="col">
          Error: {error.message}
        </div>
      );
    } else if (!isLoaded) {
      return (
        <div className="col">
          Loading...
        </div>
      );
    } else {
      return (
        <div className="col">
          <h1>Mi Casa</h1>
          <p>This is my house y'all!</p>
          <p>Stuff: {homes}</p>
        </div>
      );
    }
  }
}

export default Home;

何が間違っているのでしょうか?

ベストアンサー1

データhomesは配列なので、配列を反復処理するには配列.プロトタイプ.マップ()それが機能するために。

return (
    <div className="col">
      <h1>Mi Casa</h1>
      <p>This is my house y&apos;all!</p>
      {homes.map(home => <div>{home.name}</div>)}
    </div>
  );

おすすめ記事