[ Express ] Cannot read properties of undefined (reading 'length')
문제현상템플릿 엔진에게 데이터를 넘겨서 웹 페이지를 렌더링을 하려고 했다. 하지만 데이터를 확인할 수 없다는 메세지를 받았다. 해결과정템플릿 엔진 코드들을 먼저 확인했다. 별다른 이상은 없었다.컨트롤러 코드를 확인해봤다. 데이터를 변수 그대로 넘기고 있었다.const fruit = (fruitName, fruitAmount, fruitSize, fruitColor, fruitWeight) => { return { name: fruitName, amount: fruitAmount, mySize: fruitSize, color: fruitColor, weight: fruitWeight, };};const fruits = [ f..