2
Express에서 루트 후 선택적 매개 변수로 경로 제어를 전달합니까?
간단한 URL 단축 앱을 개발 중이며 다음과 같은 급행 경로가 있습니다. app.get('/', function(req, res){ res.render('index', { link: null }); }); app.post('/', function(req, res){ function makeRandom(){ var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; for( var i=0; i < 3 /*y u looking at me <33??*/; i++ ) text += possible.charAt(Math.floor(Math.random() …