我有一个编辑/新表单,我想在我的集合中更新mongo文档。
视频集 - 每个都有一系列流派[1,2,3],我在每个视频中插入一个流派ID。
我有两个架构,一个用于流派,一个用于视频
我正在使用autoform给我字段和twitter bootstrap
我无法让autoform在编辑或新表单中显示类型。
以下代码:
genres: {
type: [Genres],
label: "Genre",
autoform: {
type: 'checkbox',
options: function () {
return Genres.find().map(function (g) {
return {label: g.name, value: g._id};
});
}
},
optional: true
},
以我的形式
{{> afQuickField name="genres" type="checkbox" options="genres" noselect=true}}
所有其他字段都正常工作,数据通过。