我想从另一个集合(即 MyCollection)中获取下拉选项。在这个集合中,我拥有所有选项值(即选项)。我正在使用 collection2 包,我只想获取模式中的所有选项,而不使用帮助程序。
定义集合:
MyCollection = new Mongo.Collection('mycollection');
集合结构:
{
options : [A, B, C, D, E, F]
}
collection2 架构:
some-schema = new SimpleSchema({
dropdown : {
type : String,
label : "Select One",
autoform : {
options: /*....*/
}
}
});
html:
{{#autoForm schema='some-schema' id='some-id' type="method" meteormethod="some-method"}}
{{> afQuickField name='dropdown'}}
{{/autoForm}}
任何建议...