假设我有以下模型(model1)和集合(collection1)
model1.attributes = {
name: 'bar'
};
collection1.models = [{}, {}, {}];
可以通过使用主干关系来model1
了解collection1
?
model1.attributes = {
name: 'bar',
collection1Length = 3 // collection1.models.length
}
谢谢