繁体   English   中英

使用 Map 解析列表项的正确方法是什么?

[英]What is the correct way to parse the list items using Map?

在道具解析过程中出现以下错误:

无法读取未定义的属性“地图”

在道具props.doubleArray中。 但是,当我打印它时,它会在控制台中显示一个双数组。 map的正确使用方法是什么?

class Menu extends Component {

render() {
return (
<div className="menu__row">
            <ListItems
              doubleArray={[
                [
                  "New & Featured",
                  "Shop All New Arrivals",
                  "SNKRS Launch Calendar",
                  "Best of Air Max",
                  "Member Access",
                ],
                [
                  "New & Featured",
                  "Shop All New Arrivals",
                  "SNKRS Launch Calendar",
                  "Best of Air Max",
                  "Member Access",
                ],
                [
                  "New & Featured",
                  "Shop All New Arrivals",
                  "SNKRS Launch Calendar",
                  "Best of Air Max",
                  "Member Access",
                ],
                [
                  "New & Featured",
                  "Shop All New Arrivals",
                  "SNKRS Launch Calendar",
                  "Best of Air Max",
                  "Member Access",
                ],
              ]}
            />
            <ListItems />
          </div>

);
}
}

function ListItems(props) {
  return (
<div className="listItems">
  {props.doubleArray.map((array) => (
    <ul className="listItems__column" key={array.id} value={array}>
      <li className="listItems__title"> {array[0]}</li>
      {array.map((item, index) =>
        index > 0 ? (
          <li className="listItems__text" key={item.id} value={item}>
            {item}
          </li>
        ) : null
      )}
    </ul>
  ))}
</div>
  );
}

export default Menu;

尝试这个:

<div className="listItems">
  {props.doubleArray && props.doubleArray.map((array) => (
    <ul className="listItems__column" key={array.id} value={array}>
      <li className="listItems__title"> {array[0]}</li>
      {array.map((item, index) =>
        index > 0 ? (
          <li className="listItems__text" key={item.id} value={item}>
            {item}
          </li>
        ) : null
      )}
    </ul>
  ))}
</div>

暂无
暂无

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

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