React报错之map() is not a function

当我们对一个不是数组的值调用map()方法时,就会产生"TypeError: map is not a function"错误。为了解决该错误,请将你调用map()方法的值记录在console.log上,并确保只对有效的数组调用map

这里有个示例来展示错误是如何发生的。

const App = () => {
  const obj = {};

  // ⛔️ Uncaught TypeError: map is not a function

  return (
    
{obj.map(element => { return

{element}

; })}
); }; export default App;

我们在一个对象上调用Array.map()方法,得到了错误反馈。

为了解决该错误,请console.log你调用map方法的值,确保它是一个有效的数组。

export default function App() {
  const arr = ['one', 'two', 'three'];

  return (
    
{arr.map((element, index) => { return (

{element}

); })}
); }

Array.isArray

你可以通过使用Array.isArray方法,来有条件地检查值是否为数组。

const App = () => {
  const obj = {};

  return (
    
{Array.isArray(obj) ? obj.map(element => { return

{element}

; }) : null}
); }; export default App;

如果值为数组,则返回对其调用map方法的结果,否则返回null。这种方式不会得到错误,即使值不是一个数组。

如果值是从远程服务中获取,请确保它是你期望的类型,将其记录到控制台,并确保你在调用map方法之前将其解析为一个原生JavaScript数组。

Array.from

如果有一个类数组对象,在调用map方法之前你尝试转换为数组,可以使用Array.from()方法。

const App = () => {
const set = new Set(['one', 'two', 'three']);

return (
  
{Array.from(set).map(element => { return (

{element}

); })}
); }; export default App;

在调用map方法之前,我们将值转换为数组。这也适用于类数组的对象,比如调用getElementsByClassName方法返回的NodeList

Object.keys

如果你尝试迭代遍历对象,使用Object.keys()方法获取对象的键组成的数组,在该数组上可以调用map()方法。

export default function App() {
  const employee = {
    id: 1,
    name: 'Alice',
    salary: 100,
  };

  return (
    
{/* ️ iterate object KEYS */} {Object.keys(employee).map((key) => { return (

{key}: {employee[key]}


); })}


{/* ️ iterate object VALUES */} {Object.values(employee).map((value, index) => { return (

{value}


); })}
); }

我们使用Object.keys方法得到对象的键组成的数组。

const employee = {
  id: 1,
  name: 'Alice',
  salary: 100,
};

// ️ ['id', 'name', 'salary']
console.log(Object.keys(employee));

// ️ [1, 'Alice', 100]
console.log(Object.values(employee));

你可能感兴趣的:(react.js,javascript,前端)