繁体   English   中英

“必须返回一个有效的React元素(或null)。”with array.map

[英]“A valid React element (or null) must be returned.” with array.map

我有下面定义的功能反应组件:

import React from 'react';
import Cell from './FeedCell';
import PropTypes from 'prop-types';

const Feed = (props) => {
        return props.arr.map((type, index) => {
            return (<Cell />)
        })
};

我收到错误:

Feed(...):必须返回有效的React元素(或null)。 您可能已返回undefined,数组或其他一些无效对象。

我觉得这应该是显而易见的,但我尝试过在线提供的解决方案,但我遗漏了一些东西。

您当前正在返回一个数组,但您必须返回一个正确的React元素。

如果您不想在DOM中包装元素,可以将数组包装在React.Fragment中。

const Feed = (props) => {
  return (
    <React.Fragment>
      {props.arr.map((type, index) => <Cell />)}
    </React.Fragment>
  );
};

您需要将数组包装在某个元素中

如果您不想将FeedCell包装在实际元素中,则可以使用React.Fragment

const Feed = (props) => {
    return (
        <React.Fragment>
            { props.arr.map((type, index) => <Cell />) }
        </React.Fragment>
    );
};

更多信息请访问: https//reactjs.org/docs/fragments.html

你能添加更多信息吗? - FeedCell代码和Feed的父级。

尝试控制台记录道具并检查props.disputesToRender是否实际存在或在所有渲染调用中都有值。

检查FeedCell是否实际返回html或返回html的组件。

您还应该添加<div><React.Fragment>来包含返回方法。 因为返回时应始终有一个父母。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM