我有三个模型,一对多的关系。简单的树。我需要的是一种查询结构化关系树的简单有效的方法,最好类似于mongoose的 .populate(),我不能使用它,因为我在父模型上没有id。我认为将子ID保存在父级上会有效,但Keystone默认不提供此功能,我无法编写更新回调来控制关系更改。我试着浪费了太多时间,发现自己误入歧途,也许我想要实现的目标要容易得多,但我却看不到它。
这是剥离的代码:
Category.add({
name: { type: String}
});
Category.relationship({ path: 'sections', ref: 'Section', refPath: 'category' });
Section.add({
name: { type: String, unique: true, required: true}
category: { type: Types.Relationship, ref: 'Category', many: false}
});
Section.relationship({ path: 'articles', ref: 'Article', refPath: 'section'});
Article.add({
name: { type: String, required: true}
section: { type: Types.Relationship, ref: 'Section', many: false }
});
我希望得到一个类别的结构化视图,其中包含所有孩子及其各自的子孩子:
[ { _id: 57483c6bad451a1f293486a0,
name: 'Test Category',
sections: [
{ _id: 57483cbbad451a1f293486a1,
name: 'Test Section',
articles: [
{ _id: 57483c6bad451a1f293486a0,
name: 'Test Category' }
]
]
} ]
答案 0 :(得分:0)
这就是我如何做到的。根本没有效率,但至少它是有效的。我没有把任何东西放在一级父母身上,因为我只需要一个。
// Load current category
view.on('init', function (next) {
var q = keystone.list('Category').model.findOne({
key: locals.filters.category
});
q.exec(function (err, result) {
if (err || !results.length) {
return next(err);
}
locals.data.category = result;
locals.section = locals.data.category.name.toLowerCase();
next(err);
});
});
// Load sections and articles inside of them
view.on('init', function (next) {
var q = keystone.list('Section').model.find().where('category').in([locals.data.category]).sort('sortOrder').exec(function(err, results) {
if (err || !results.length) {
return next(err);
}
async.each(results, function(section, next) {
keystone.list('Article').model.find().where('section').in([section.id]).sort('sortOrder').exec(function(err, articles){
var s = section;
if (articles.length) {
s.articles = articles;
locals.data.sections.push(s);
} else {
locals.data.sections.push(s);
}
});
}, function(err) {
next(err);
});
next(err);
});
});
但现在我又得到了另一个问题。我使用Jade 1.11.0作为模板,有时它不会在视图中显示数据。 我将针对这个问题发布另一个问题。