250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MYSQL
- wil
- mongoose
- findByIdAndDelete
- flutter
- TailwindCSS
- certbot
- EC2
- til
- Find
- Express
- https
- sequelize
- jsonwebtoken
- AWS
- RDS
- single quote
- mongodb
- Node.js
- clipBehavior
- nginx
- async
- JavaScript
- TypeScript
- atlas
- css
- Nodejs
- double quote
- moment
- await
Link
Archives
기억 휘발 방지소
[Node.js] mongoDB Schema 생성 본문
728x90
반응형
📌 Schema를 생성하는 법
문서에 가보면 방법을 친절히 설명해주고 있다.
import mongoose from "mongoose";
const videoSchema = new mongoose.Schema({
title: String, // String is shorthand for { type: String }
description: String,
createdAt: Date,
hashtags: [{ type: String }],
meta: {
views: Number,
rating: Number,
},
});
- title필드의 타입은 문자열
- description의 타입도 문자열
- createAt의 타입은 날짜
- hashtags는 문자열의 배열이다.
- meta는 객체가 들어간다. views와 rating의 타입은 숫자
String이라고 적어줘도되고 { type: String }이라고 적어줘도 된다.
📌 Model 생성
모델은 모델의 이름과 데이터의 형식인 schema로 구성하면 된다.
const Video = mongoose.model("Video", videoSchema);
728x90
반응형
'Web > Node.js' 카테고리의 다른 글
[Node.js] express-session (0) | 2021.09.23 |
---|---|
[Node.js] bcrypt로 비밀번호를 보호하자 (0) | 2021.09.22 |
[Node.js] mongoDB를 연결해보자 (0) | 2021.09.17 |
[Node.js] express.urlencoded는 뭘까? (0) | 2021.09.16 |
[Node.js] Pug 설치 및 사용 (0) | 2021.09.15 |