일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mongoose
- wargame.kr
- 자바기초
- NavBar
- 웹해킹기초
- 자료구조
- GIT
- Express
- node
- 이진트리
- 그래프
- 워게임
- 웹기초
- bootstrap
- 써니나타스
- CTF
- gitbash
- 웹해킹
- MongoDB
- 이진탐색트리
- materialize
- nodeJS
- 포렌식
- 워게임추천
- 웹개발
- 자바
- 자바문제풀이
- 포렌식워게임
- 뷰
- node.js
- Today
- Total
목록mongoose (2)
보안 전공생의 공부
1. 게시물 model 만들기 //models/Post.js const mongoose = require('mongoose'); const postSchema = mongoose.Schema({ title:{type:String, required:true}, body:{type:String, required:true}, createdAt:{type:Date, default:Date.now}, updatedAt:{type:Date}, }); const Post = mongoose.model('post', postSchema); module.exports = Post; - Post의 schema 구성 -> title, body, createdAt, updatedAt createdAt:{type:Date, d..
· CRUD(Create, Read, Update, Delete) : 데이터의 생성, 조회, 수정, 삭제가 가능한 기능을 말함 · 7 Standard Actions : CRUD를 7개로 더 세분화 한 것. 웹사이트가 어떠한 종류의 데이터를 가지고 하는 일반적인 7개의 작업을 나타낸다 (필연적인 것은 아니고 권장사항). - New : 생성폼을 사용자에게 보여줌 - Create : 전달 받은 자료를 실제로 생성 - Edit : 수정폼을 사용자에게 보여줌 - Update : 전달 받은 자료를 바탕으로 현재 자료를 실제로 수정 - Index : 자료들의 목록을 조회 - Show : 하나의 자료를 상세히 보여줌 - Destroy : 자료를 삭제 출처 : https://www.a-mean-blog.com/ko/bl..