我有带有关系的代码的工作示例,但是缺少-主干用相关模型替换了我的外国ID,我想保留为外国ID并用新键添加相关模型..可能吗?
在以下示例中,engineId 将替换为相关模型。是否可以将 engineId 保留为具有关键“引擎”的相关模型?
window.Car = Backbone.RelationalModel.extend({
defaults : {
id : null,
brand : null,
engineId : null,
}
});
window.Engine = Backbone.RelationalModel.extend({
defaults : {
id : null,
type : null,
},
relations: [{
type : 'HasMany',
key : 'cars',
relatedModel : 'Car',
reverseRelation: {
key: 'engineId',
}
}]
});
var engines = new Backbone.Collection([
{id : 1, type : 'electric'},
{id : 2, type : 'diesel'},
], {model: window.Engine});
var cars = new Backbone.Collection([
{id : 1, brand : 'Toyota', engineId : 2},
{id : 2, brand : 'Ford', engineId : 2},
{id : 3, brand : 'Tesla', engineId : 1},
], {model: window.Car});
cars.each(function(car){
console.log(car.get('id'), car.get('brand'), car.get('engineId').get('type'));
});