{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> ); })}有誰知道解決方案是什么?我第一次使用二維數組
嘗試將第二個映射方法包裝在行 DIV 中,但我不斷收到意外的標記錯誤
慕碼人2483693
2023-10-14 09:52:49