인프런 커뮤니티 질문&답변
안녕하세요? DB 저장시 대륙번호가 1번으로만 저장됩니다.
작성
·
274
답변 2
0
0
John Ahn
지식공유자
안녕하세요 ~ ~
const submitHandler = (event) => {
event.preventDefault();
if (!Title || !Description || !Price || !Continent || Images.length === 0) {
return alert(" 모든 값을 넣어주셔야 합니다.")
}
//서버에 채운 값들을 request로 보낸다.
const body = {
//로그인 된 사람의 ID
writer: props.user.userData._id,
title: Title,
description: Description,
price: Price,
images: Images,
continents: Continent
}
Axios.post('/api/product', body)
.then(response => {
if (response.data.success) {
alert('상품 업로드에 성공 했습니다.')
props.history.push('/')
} else {
alert('상품 업로드에 실패 했습니다.')
}
})
}
여기서 const body = {}
아래에 다가
console.log('body', body)
하신다음에 continents 숫자가 어떤게 나오는지 봐주실수 있을까요 ?





