작성
·
788
·
수정됨
0
주문 목록 실행 시 서버쪽 로그에서 아래와 같은 에러가 발생합니다.
[Nest] 89380 - 04/14/2023, 5:33:24 PM ERROR [ExceptionsHandler] Cannot read properties of undefined (reading '0')
TypeError: Cannot read properties of undefined (reading '0')
at /cf-flutter-lv2-server/src/order/order.service.ts:35:39
호출 API 는 아래처럼 보내집니다.
http://127.0.0.1:3000/order/?count=20
혹시 위 현상에 대해서 어떤 이유가 있을까요?
아래 서버 로그 추가로 올립니다.
{
basket: [
{ productId: '76e4ddb0-0a4c-44c2-be91-b35fdd3e32a9', count: 1 },
{ productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 2 }
]
}
PatchMeBasketDto {
basket: [
{ productId: '76e4ddb0-0a4c-44c2-be91-b35fdd3e32a9', count: 1 },
{ productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 2 }
]
}
{
basket: [ { productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 2 } ]
}
PatchMeBasketDto {
basket: [ { productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 2 } ]
}
{
basket: [ { productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 1 } ]
}
PatchMeBasketDto {
basket: [ { productId: 'faea6be9-f5ca-4005-9922-98c04ff2c89d', count: 1 } ]
}
{ basket: [] }
PatchMeBasketDto { basket: [] }