我正在设置一个带有Rails后端的React应用程序。我得到的错误“对象是无效的React子(发现:对象与键{id,名称,信息,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;

我做错了什么?


当前回答

如果你想在不迭代的情况下显示所有对象,那么你必须将数据作为字符串值发送 即

  <p>{variableName.toString()}</>

其他回答

同样的错误,但场景不同。 我的状态是

        this.state = {
        date: new Date()
    }

所以当我在我的类组件中问它时,我有

p>Date = {this.state.date}</p>

而不是

p>Date = {this.state.date.toLocaleDateString()}</p>

我也有同样的问题,然后我意识到我犯了有史以来最愚蠢的错误。我让我的组件是异步的,我的意思是我使用了async关键字,就像这样

const ComponentName = async () => {
  return <>
   <div>This a WRONG component</div>
 </>
}

然后,在经历了很多头疼和祈祷之后,我意识到我的愚蠢错误,并删除了async。

const ComponentName = () => {
  return <>
   <div>This a WRONG component</div>
 </>
}

在我的情况下,我有一个添加的异步在app.js如下所示。

const App = async() => {
return(
<Text>Hello world</Text>
)
}

但这并不是必须的,在测试某些内容时,我已经添加了它,并且不再需要它。移除它之后,如下图所示,事情开始工作了。

 const App =() => {
    return(
    <Text>Hello world</Text>
    )
}

如果你想在不迭代的情况下显示所有对象,那么你必须将数据作为字符串值发送 即

  <p>{variableName.toString()}</>

我希望它能帮助到其他人。

这个错误似乎也发生在你无意中发送一个复杂的对象,其中包括例如Date to React子组件。

它传递给子组件new Date('....')的示例如下:

 const data = {name: 'ABC', startDate: new Date('2011-11-11')}
 ...
 <GenInfo params={data}/>

如果你将它作为子组件参数的值发送,你将发送一个复杂的对象,你可能会得到如上所述的相同错误。

检查是否传递了类似的东西(在底层生成复杂的Object)。相反,您可以将该日期作为字符串值发送,并在子组件中执行新日期(string_date)。