Notice
Recent Posts
Recent Comments
«   2025/01   »
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 31
Archives
Today
Total
관리 메뉴

SYDev

[Node.js] 13. Post 방식으로 전송된 데이터 받기 본문

대딩코딩/웹개발 스터디

[Node.js] 13. Post 방식으로 전송된 데이터 받기

시데브 2023. 11. 18. 21:42
해당 게시물은 유튜브 생활코딩 "Node.js" 강의 영상을 참고했습니다.
(https://www.youtube.com/watch?v=3RS_A87IAPA&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=1)

 

 

var http = require('http');
var fs = require('fs');
var url = require('url');
var qs = require('querystring');

function templateHTML(title, list, body) {
  return `
  <!doctype html>
  <html>
  <head>
    <title>WEB - ${title}</title>
    <meta charset="utf-8">
  </head>
  <body>
    <h1><a href="/">WEB2</a></h1>  
    ${list}
    <a href = "/create">create</a>
    ${body}
  </body>
  </html>
  `;
}

function templateList(filelist) {
  var list = '<ol>';
  var i = 0;
  while(i < filelist.length) {
    list += `<li><a href="/?id=${filelist[i]}">${filelist[i]}</a></li>`;
    i++;
  }
  list += '</ol>';

  return list;
}

var app = http.createServer(function(request,response){
    var _url = request.url;
    var queryData = url.parse(_url, true).query;
    var pathname = url.parse(_url, true).pathname

    if(pathname === '/') {
        if(queryData.id === undefined) {
          fs.readdir('./data', function(error, filelist) {
            var title = 'Welcome';
            var description = 'Hello, Node.js';
            var list = templateList(filelist);
            var template = templateHTML(title, list, `<h2>${title}</h2>${description}`);
            response.writeHead(200);
            response.end(template);
          }) 
        } else {
          fs.readdir('./data', function(error, filelist) {
            fs.readFile(`data/${queryData.id}`, 'utf8', function(err, description) {
              var title = queryData.id;
              var list = templateList(filelist);
              var template = templateHTML(title, list, `<h2>${title}</h2>${description}`);
              response.writeHead(200);
              response.end(template);
            });
          });
        }
    } else if(pathname === '/create') {
      fs.readdir('./data', function(error, filelist) {
        var title = 'Web - create';
        var list = templateList(filelist);
        //place holder는 text input 박스 안에 나타나는 텍스트
        var template = templateHTML(title, list, `
        <form action = "http://localhost:3000/create_process" method = "post">
          <p><input type = "text" name = "title" placeholder = "title"></p>
          <p>
            <textarea name = "description" placeholder = "description"></textarea>
          </p>
          <p>
            <input type = "submit">
          </p>
        </form>
        `);
        response.writeHead(200);
        response.end(template);
      }); 
    } else if(pathname === '/create_process') {
      var body = '';
      //request <- var app = http.createServer(function(request,response)
      //사용자가 요청할 때 웹브라우저에서 제공하는 정보
      request.on('data', function(data) {
        body += data;
      });
      //정보 수신이 끝난 시점
      //post.tile과 post.description과 같은 방식으로 post 데이터에 접근할 수 있음
      request.on('end', function() {
        var post = qs.parse(body);
        var title = post.title;
        var description = post.description
        console.log(post);
      });
      response.writeHead(200);
      response.end('success');
    } else {
      response.writeHead(404);
      response.end('Not found')
    }
});
app.listen(3000);

>> pathname이 /creat_process인 경우(텍스트에 정보를 입력하여 넘어가는 페이지)를 따로 설정

>> request.on으로 데이터를 입력받아 body 생성 -> qs.parse(body)를 통해서 post 정보에 접근할 수 있음

 

0|main     | [Object: null prototype] {
0|main     |   title: 'nodejs',
0|main     |   description: 'node.js is...\r\n'     
0|main     | }