작성
·
293
답변 1
1
미들웨어 커스터마이징방법입니다. 원래는
app.get('...', passport.authenticate('local')) 해야할 것을 미들웨어를 따로 넣어서
app.get('...', (req, res, next) => {
passport.authenticate('local')(req, res, next)
});
하는 겁니다.
tag.onClick(func)와 tag.onClick(() => { func() }) 하는 것과도 비슷합니다.