次のモデル (model1) とコレクション (collection1) があるとします。
model1.attributes = {
name: 'bar'
};
collection1.models = [{}, {}, {}];
バックボーン リレーションを使用して?model1
の長さを知ることができます。collection1
model1.attributes = {
name: 'bar',
collection1Length = 3 // collection1.models.length
}
ありがとう