我有以下型號:帆多個型號副
Comment.js
module.exports = {
attributes: {
id : {
type : 'integer',
primaryKey : true
},
objectId : {
type : 'string',
required : true
},
comment : {
type : 'string',
required : true
}
}
};
Image.js和的Video.js是相同的:
module.exports = {
attributes: {
id : {
type : 'integer',
primaryKey : true
},
name : {
type: 'string'
},
comments : {
collection : 'comment',
via : 'objectId'
}
}
};
當我嘗試填充評論視頻或圖像模型陣列始終爲空(某些註釋已插入兩者)。
Image.find({id: 1}).populate('comments').exec(function(err, image) {
console.log(image);
});
或者這...
Video.find({id: 1}).populate('comments').exec(function(err, video) {
console.log(video);
});
我想獨立的視頻和圖像模型,並徵求意見,我想使用組合後的表。
TNX
你使用了哪個數據庫? – sgress454 2015-02-11 01:14:56
MySQL當然是 – Vlatko 2015-02-11 08:36:29