小编典典

React中的渲染对象属性

javascript

我有一个这样的物体

export const otherInformation = [
{
    "FAQ": ['Getting started guide', 'Selling policy'],
    "Help & Support": ['Help guide', 'Selling policy'],
    "Legal": ['Terms of Use', 'Privacy Policy']
}]

我的密码

class Information extends Component {
    render() {
        const otherInformationLoop = otherInformation.map((value, key) => {
            return (
                <div>
                    <div className="col-md-4" key={key}>
                        <div className="dashboard-info">

                            {Object.keys(value).map((val, k) => {
                                return (<h4 k={k}>{val}</h4>)
                                })
                            }

                        </div>
                    </div>
                </div>
            )
        })

        return (
            { otherInformationLoop }
            // <div></div>
        );
    }
}

我在遍历对象时遇到麻烦。

获得的错误是这样的

Information.render(): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object

我如何循环通过该对象,以便获得所获得的结果

提前致谢。任何帮助表示赞赏


阅读 631

收藏
2020-05-01

共1个答案

小编典典

您正在渲染数组,但是只能从react组件返回一个块,将map函数包装在div中

class Information extends Component {
    render() {
        const otherInformationLoop = otherInformation.map((value, key) => {
            return (
                <div>
                    <div className="col-md-4" key={key}>
                        <div className="dashboard-info">

                            {Object.keys(value).map((val, k) => {
                                return (<h4 k={k}>{val}</h4>)
                                })
                            }

                        </div>
                    </div>
                </div>
            )
        })

        return (

            <div>{ otherInformationLoop }</div>
        );
    }
}
2020-05-01