Express 시작 (1)
6975 단어 사이트 개발
기사 목록
기본 서버 구축
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('this is the homepage');
console.log('this is the homepage');
});
app.listen(3000);
console.log('listening to port 3000');
라우팅 매개변수
var express = require('express');
var app = express();
app.get('/profile/:id/user/:name', function(req, res){//:id , id
console.log(req.params);
res.send('You will see a profile with the id of ' + req.params.id);
});
app.get('/ab?cd', function(req, res){//
res.send(' /ab?cd');
});
app.listen(3000);
console.log('listening to port 3000');
질의 문자열
//http://127.0.0.1:3000/?find=hot req.query {find : 'hot'}
app.get('/', function(req, res){
console.dir(req.query["find"]);
res.send('here' + res.query.id);
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Windows 에 nginx 서버 구축2. 압축 을 풀 고 루트 디 렉 터 리 이름 을 nginx 로 변경 합 니 다. 3. 시스템 에 IIS 가 설치 되 어 있 으 면 IIS 를 일시 정지 합 니 다. 4. 명령 행 에 들 어가 명령 을 실행 합 니 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.