其他分享
首页 > 其他分享> > React技巧之中断map循环

React技巧之中断map循环

作者:互联网

正文从这开始~

总览

在React中,中断map()循环:

  1. 在数组上调用slice()方法,来得到数组的一部分。
  2. 在部分数组上调用map()方法。
  3. 遍历部分数组。
export default function App() {
  const employees = [
    {id: 1, name: 'Alice', country: 'Austria'},
    {id: 2, name: 'Bob', country: 'Belgium'},
    {id: 3, name: 'Carl', country: 'Canada'},
    {id: 4, name: 'Delilah', country: 'Denmark'},
    {id: 5, name: 'Ethan', country: 'Egypt'},
  ];

  // 

标签:map,slice,name,中断,country,React,数组,employee,id
来源: https://www.cnblogs.com/chuckQu/p/16436176.html