Предпочитаните трябва да са масив от низ като този:favorites: [String]
За масива cart имаме две основни опции:
- Можем да дефинираме количката като масив от
subdocuments
.
const schema = new Schema({
email: { type: String, unique: true, required: true },
hash: { type: String, required: true },
createdDate: { type: Date, default: Date.now },
settings: {
favorites: [String],
cart: [
{
quantity: Number,
marketId: String
}
],
states: {
favorites: { type: Boolean, default: true },
search: { type: Boolean, default: false },
category: { type: Schema.Types.Mixed, default: false }
}
}
});
- Или можем да декларираме количката като масив от
schema types
.
const schema = new Schema({
email: { type: String, unique: true, required: true },
hash: { type: String, required: true },
createdDate: { type: Date, default: Date.now },
settings: {
favorites: [String],
cart: [
new Schema({
quantity: Number,
marketId: String
})
],
states: {
favorites: { type: Boolean, default: true },
search: { type: Boolean, default: false },
category: { type: Schema.Types.Mixed, default: false }
}
}
});
И за двете, когато създадете документ, той ще изглежда така, имайте предвид, че mongoose добави поле _id в елементите на картата.
{
"settings": {
"states": {
"favorites": true,
"search": false,
"category": false
},
"favorites": [
"234",
"564",
"213",
"782"
],
"cart": [
{
"_id": "5e6cd0bd53feb32d50699b79",
"quantity": 5,
"marketId": "234"
},
{
"_id": "5e6cd0bd53feb32d50699b78",
"quantity": 2,
"marketId": "564"
},
{
"_id": "5e6cd0bd53feb32d50699b77",
"quantity": 7,
"marketId": "213"
},
{
"_id": "5e6cd0bd53feb32d50699b76",
"quantity": 3,
"marketId": "782"
}
]
},
"_id": "5e6cd0bd53feb32d50699b75",
"email": "[email protected]",
"hash": "hash...",
"createdDate": "2020-03-14T12:40:29.969Z",
"__v": 0,
"id": "5e6cd0bd53feb32d50699b75"
}
Ако не искате _id
полета в масива cart, можете да добавите _id: false
изберете схемата на количката по следния начин:
cart: [
new Schema(
{
quantity: Number,
marketId: String
},
{ _id: false }
)
],
Ето някои полезни документи: