我有一个带关系的代码的工作示例,但缺少主干网用相关的模型替换我的外部id,我想保留为外部id,并用新的键添加相关的模型。。有可能吗?
在以下示例中,engineId将替换为相关型号。是否可以保留与钥匙"engine"相同的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'));
});
您不能直接从引擎模型中获取id有什么原因吗?例如
car.engine.get('id')