NodeJS 가 참 조 를 취 하 는 네 가지 방법 req. hostname / req. params / req. path / req. query

1489 단어 5Node.Js
시작 서버
node app.js

인터넷 주소 입력
http://127.0.0.1:9091/idx/:9?name=tom&addr=usa

app.js
'use strict';

let express = require('express') ;
let app = express() ;


app.get('/idx/:pageNum',function( req , res ){

  console.log( req.hostname );  // '127.0.0.1'
  console.log( req.params );    // { pageNum: ':9' }
  console.log( req.path );      // /idx/:9
  console.log( req.query );     // { name: 'tom', age: '18' }

  res.send( '

test

'
) ; }) ; app.listen(9091,'127.0.0.1',function(){ console.log('server is running at port 9091') ; });

좋은 웹페이지 즐겨찾기