일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Git
- orm
- 마이바티스
- sql
- springboot
- npm
- ElasticSearch
- 엘라스틱서치
- 스프링
- Stash
- Bitbucket
- slave node
- 자바
- 트랜잭션
- heap메모리
- 아파치
- 레드마인
- nodejs
- 시스템운영
- Elk
- SonarQube
- DB
- 리눅스
- spring
- Apach
- mysql
- Java
- JVM
- mybatis
- Gradle
Archives
- Today
- Total
프로그래머호이잇
express router 시 함수 여러개 실행 본문
var filter = function (req, res, next) {
console.log('filter');
next();
}
app.get('/test',[filter],function(req, res) {
}
var filter2 = function (req, res, next) {
console.log('filter2');
next();
}
app.get('/test',[filter,filter2],function(req, res) {
}
요런식으로 배열로 함수를 집어넣으면 됩니다.
'DB' 카테고리의 다른 글
sql 나누기 연산 및 퍼센트로 만들기 (0) | 2019.08.02 |
---|---|
window function 을 이용하여 sql로 count 하기 (0) | 2019.07.30 |
MYSQL DB, TABLE char set 변경 방법 (0) | 2017.09.07 |
mysql 한글 물음표 현상. (0) | 2017.09.07 |
MYSQL 유저 DB 권한 확인 (0) | 2017.08.22 |