天天看點

React 實戰 | react map循環,報警告Expected to return a value in arrow function

map循環,報警告Expected to return a value in arrow function

意思是缺少return傳回值

React 實戰 | react map循環,報警告Expected to return a value in arrow function

解決方案:

  1. 使用forEach代替map,因為ESlint報這個警告是因為map, filter , reduce 需要傳回值
  2. 也可以使用map,在react中用jsx的方式,直接把{}改成()

繼續閱讀