Answer the question
In order to leave comments, you need to log in
How to display a menu in an online store?
Hello!
I am writing a bicycle (online store) for myself on node.js and mongodb (mongoose).
But there was a question on operation with a tree of categories.
Now there is a structure like this:
var CategorySchema = new Schema({
name: String,
slug: String,
text: String,
parentSlug: {type: String, default: ""},
ancestry: {type:[String], default: []} // предки для получения полного урла категории и хлебных крошек
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question