&符号模型可以包含&符号集合吗?
Can ampersand-model contain an ampersand-collection?
显然 ampersand-model
可以存在于 ampersand-collection
中,并且可以引用父集合。但是,它本身可以有一个ampersand-collection
吗?
伪代码..?
var Collection = require('App/Collection/Foo');
var BaseModel.extend({
props: {
foo: Collection
}
});
当然,使用 collections
字段您可以声明模型中包含的集合:
var Collection = require('App/Collection/Foo');
var MyModel = BaseModel.extend({
collections: {
foo: Collection
}
});
见http://ampersandjs.com/learn/state#child-models-and-collections
显然 ampersand-model
可以存在于 ampersand-collection
中,并且可以引用父集合。但是,它本身可以有一个ampersand-collection
吗?
伪代码..?
var Collection = require('App/Collection/Foo');
var BaseModel.extend({
props: {
foo: Collection
}
});
当然,使用 collections
字段您可以声明模型中包含的集合:
var Collection = require('App/Collection/Foo');
var MyModel = BaseModel.extend({
collections: {
foo: Collection
}
});
见http://ampersandjs.com/learn/state#child-models-and-collections