Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 구글
- it
- 개발
- php
- java
- error
- Portfolio
- ubuntu
- unity
- techEmpower
- 컴퓨터과학총론
- javascript
- android
- caddy
- 해석
- C lanuage
- centOS7
- 한글
- 개발자
- kakao
- mariadb
- 자바
- H2O
- NGINX
- server
- 프래그먼트
- 번역
- C
- 안드로이드
- MySQL
Archives
- Today
- Total
개발모음집
TypeError: Router.use() requires a middleware function but got a Object 본문
Server/node.js
TypeError: Router.use() requires a middleware function but got a Object
void 2019. 12. 17. 10:00routes폴더의 파일 마지막에
const express = require('express');
const router = express.Router();
router.post('/', async (req, res, next) => {
try {
console.log(req);
res.json(req);
} catch (err) {
console.log(err);
return next(err);
}
});
이런식으로 module.exports = router;를 써주지 않아서 문제인 것
// 위 코드 맨 아래줄에 추가
module.exports = router;