겁니다. ‘모델’이라는 단어를 들으면 기능보다는 데이터를 더 많이 떠올리기는 하지만, 필자는 이
런 제한이 유용하다고 생각하지는 않으며 모델은 데이터와 로직의 결합이라고 생각합니다.
프로젝트에
models
서브디렉터리를 만들어 모델을 거기 보관하길 권합니다. 구현해야 할 기능
이 있거나 저장할 데이터가 있을 때마다
models
디렉터리에서 작업해야 합니다. 예를 들어 고
객 데이터와 로직을
models
/
customer
.
js
에 저장한다고 합시다.
var mongoose
=
require
('
mongoose
');
var Order
=
require
('./
order
.
js
');
var customerSchema
=
mongoose
.
Schema
({
firstName
:
String
,
lastName
:
String
,
email
:
String
,
address1
:
String
,
address2
:
String
,
city
:
String
,
state
:
String
,
zip
:
String
,
phone
:
String
,
salesNotes
:
[{
date
:
Date
,
salespersonId
:
Number
,
notes
:
String
,
}],
});
customerSchema
.
methods
.
getOrders
=
function
(
cb
){
return ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.