我正在尝试为Schema中具有select-multiple字段的文档构建更新表单
我使用quickForm
我在架构方面有这个用于下拉:
channels: {
type: [String],
label: "Channels",
optional: false,
autoform: {
type: "select-multiple",
options: function () {
var dc = Channels.find({}).fetch();
return dc.map(function (channel) { return {label: channel.name, value: channel._id}});
}
}
}
在表单方面,我通过了文档
{{> quickForm
collection="Blah"
id="updateChannels"
type="method-update"
meteormethod="updateBlah"
doc=this
}}
我从文档中获取字段,但是select-multiple显示选项列表,没有选定的项目。
如何在列表中显示所选项目?