강의

멘토링

커뮤니티

Inflearn Community Q&A

techno163072's profile image
techno163072

asked

Learn by Following Along Node, React Series - Building a Shopping Mall Site [Complete Renewal]

안녕하세요? DB 저장시 대륙번호가 1번으로만 저장됩니다.

Written on

·

282

0

대륙번호 디폴트 값을 1로 해놨는데 디폴트 값으로만 모두 저장되는 것 같습니다. 소스코드는 올려주신 소스코드를 복사해서 사용했습니다. 답변 부탁립니다. 

mongodbnodejsredux웹앱react

Answer 2

0

여기서는  continents 값이 정상적으로 나오네요

0

John Ahn님의 프로필 이미지
John Ahn
Instructor

안녕하세요 ~ ~   

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 숫자가 어떤게 나오는지 봐주실수 있을까요 ?  

techno163072's profile image
techno163072

asked

Ask a question