728x90
반응형
1. 파일구조
/root
└const
└consts.js
└collection_name.js
└query.js
└worker.js
2. worker.js - 라우터에서 쓰일 열거체와, mongoose에서 쓰일 schema를 정의한다.
const WORKER = {
"CNU" : "CNU",
"WN" : "WN",
"PN" : "PN",
"GID" : "GID",
"EM" : "EM",
"PU" : "PU",
"CA" : "CA",
"UA" : "UA",
schema : {
CNU: { // Company Number
type: String,
required: true,
},
WN: { // Worker Name
type: String,
required: true,
},
PN: { // Phone Number
type: String,
unique: true,
},
GID:{ // Google Account ID
type: String,
},
EM: { // Email
type: String,
unique: true,
required: true,
},
PU: { // Photo URL
type: String,
},
CA: { // Created At
type: Date,
default: Date.now,
},
UA: { // Updated At
type: Date,
default: Date.now,
}
}
}
exports.WORKER = WORKER;
3. query.js - modelquery 함수에서 쓰일 query문 열거체들을 정리한다.
const QUERY = {
Aggregate : "aggregate",
Create : "create",
InsertMany : "insertmany",
Find : "find",
Findone : "findone",
Update : "update",
Updatemany : "updatemany",
Updateone : "updateone",
Updateupsert : "updateupsert",
Remove : "remove",
Count : "count",
CountDoc : "countdoc",
Distinct : "distinct"
};
exports.QUERY = QUERY;
4. collection_name.js - 사용할 collection 이름들을 정리한다.
const COLLECTION_NAME = {
"Worker" : "Worker"
}
exports.COLLECTION_NAME = COLLECTION_NAME;
5. consts.js - 한곳에서 import 하기위해 위에 모든 것들을 담는 js파일을 만들어준다.
const {WORKER} = require('../const/worker');
const {COLLECTION_NAME} = require('../const/collection_name');
const {QUERY} = require('../const/query');
exports.WORKER = WORKER;
exports.COLLECTION_NAME = COLLECTION_NAME;
exports.QUERY = QUERY;
728x90
반응형
'DB > MongoDB' 카테고리의 다른 글
MongoDB | Schemas(3) (0) | 2021.09.14 |
---|---|
MongoDB | Schemas(2) (0) | 2021.09.14 |
MongoDB | Schemas(1) (0) | 2021.09.14 |
MongoDB | 설치하기, 삭제하기 (0) | 2021.09.14 |