기존

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 const http = require('http'); // http 열기 const express = require('express'); // 익스프레스 열기 const { nextTick } = require('process'); const server = express(); //서버 열기 server.use('/',(res,req,next)=>{ // '/' { // localhost:4000/add-product 실행 console.log('여기로 넘어와랑'); res.send('product page') }) server.use('/',(req,res,next..
jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기 쿠키 중복 방지 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 System.out.println("-------------------조회수 쿠키ㅏ------------------------------------"); Cookie viewCookie=null; // 1.쿠키값을 정희해준다. Cookie[] cookies=request.getCookies(); // 2. 클라이언트가 보낸 데이터..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 const http = require('http'); // http 열기 const express = require('express'); // 익스프레스 열기 const { nextTick } = require('process'); const server = express(); //서버 열기 server.use((req,res,next)=>{ //express 사용할게요 (요청,응답,다음) -- > 로그 hello print ! 작성 console.log('넘겨봐라!'); next(); // 로그 hello print ! 작성 console.log('여기로 넘어와랑'); //
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 32 33 34 35 36 S C:\Users\cas90\Desktop\01-understanding-npm-scripts> // 이걸누름 npm init This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults. See `npm help init` for definitive documentation on these fields and exactly what they..
익스프레스란 ? 패키지를 쉽게 연결해주기 ! 프레임워크 더나는 코드와 비즈니스 처리를 사용할수있게 해줌 미들웨어? 리퀘스트, 리스폰 라우팅 요청경로 , html 페이지 반환
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 const http = require('http'); const server = http.createServer((req,res) =>{ const url = req.url; if(url==='/'){ // url 값과 / 값이 똑같으면 참이라는뜻 === res.write('') res.write('') // hrml 타이틀과 헤더부분 res.write('') // body 부분에 서버에 나올 내용값 입력 ~ res.write('') return res.end(); } res.write('') res.write('') // hrml 타이틀과 헤더부분 res..
조각남자
'기존' 카테고리의 글 목록 (45 Page)