我使用Simple Schema,Collection2和Autoform。 例如我的收藏是:
experience = new SimpleSchema ({
date: {
type: Date,
label: "From",
autoform: {
'formgroup-class': 'col-sm-4',
afFieldInput: {
type: "bootstrap-datetimepicker",
}
}
}
}
Profile = new SimpleSchema({
experience: {
type: [experience]
}
});
现在使用autoform我可以添加多种体验。问题是当我设置任何日期并按下"加"按钮添加另一种体验。然后清除最后一个日期。