{middleMenu.map((column) => { return ( <div className="row"> column.map((item) => { const { title, image, path } = item; return ( <ul className="footer-collections"> <MenuLinks title={title} image={image} path={path} /> </ul> ); }) </div> ); })}有谁知道解决方案是什么?我第一次使用二维数组
1 回答
www说
TA贡献1775条经验 获得超8个赞
使用 :
<div className="row">
{column.map((item) => {
const { title, image, path } = item;
return (
<ul className="footer-collections">
<MenuLinks title={title} image={image} path={path} />
</ul>
);
})}
</div>
添加回答
举报
0/150
提交
取消