我正在使用 Meteor 1.1.0 和 Aldeed:Autoform,我需要在提交期间(或之前)将模板的 JS 文件中生成的字符串数组中的值放入 [String] 类型的文档条目中。我怎样才能做到这一点?
问问题
280 次
1 回答
1
解决方案是在 Autoform.hooks 中添加一个 before: 钩子,其中包含一个 insert: 函数,这将修改文档条目(为此,必须在模式中定义参数)。例子:
AutoForm.hooks({
'add-form': {
before:{
insert:function(doc){
doc.fileId = '1234; // doc is the data from the form.
return doc; // .fileId is the element we try to modify
}
}
}
});
于 2015-04-02T11:55:40.467 回答