인프런 커뮤니티 질문&답변

학생1님의 프로필 이미지

작성한 질문수

따라하며 배우는 노드, 리액트 시리즈 - 기본 강의

노드 리액트 기초 강의 #7 BodyParser & PostMan & 회원 가입 기능

오류확인 부탁드립니다.

21.07.14 21:28 작성

·

206

0

const express = require('express')
const app = express()
const bodyParser = require('body-parser');
const port = 5000;
const { User } = require("./models/User");

//application/x-www-form-urlencoded 
app.use(express.urlencoded({ extended: true }));

//application/json 
app.use(express.json());

const mongoose = require('mongoose')
mongoose.connect("mongodb+srv://jaesoek:1234@cluster0.qwtf5.mongodb.net/myFirstDatabase?retryWrites=true&w=majority", {
  useNewUrlParser: true, useUnifiedTopology: true, useCreateIndex: true, useFindAndModify: false
}).then(() => console.log('MongoDB Connected...'))
  .catch(err => console.log(err))


app.get('/', (req, res) => res.send('Hello World!~~ '))

app.get('/api/hello', (req, res) => res.send('Hello World!~~ '))

app.post('/api/users/register', (req, res) => {
  //회원 가입 할떄 필요한 정보들을  client에서 가져오면 
  //그것들을  데이터 베이스에 넣어준다. 
  const user = new User(req.body)

  user.save((err, userInfo=> {
    if (errreturn res.json({ success: false, err })
    return res.status(200).json({
      success: true
    })
  })
})

app.listen(port, () => console.log('server on..'))
위에 처럼 코드를 적고 포스트맨에서 보내면, 계속 이렇게 뜨네요
port번호를 바꿔보기도 했는데 안됩니다 ㅠ

답변 2

2

arthursung98님의 프로필 이미지

2021. 07. 19. 10:25

POST를 보내는 주소가 잘못된거같아요.

http://localhost:5000/register 가 아니라

http://localhost:5000/api/users/register 로 해보세요~

0

학생1님의 프로필 이미지
학생1
질문자

2021. 07. 28. 15:43

감사합니다!

학생1님의 프로필 이미지

작성한 질문수

질문하기