我想知道另一个字段的值,即使该字段尚未在此更新中设置,但它是文档的一部分并且是过去设置的。这可能是使用aldeed:simple-schema?
答案 0 :(得分:1)
没有。除非修饰符中包含其他字段,否则您必须使用 Collection.findOne 查找文档,并从中获取字段值。
答案 1 :(得分:-1)
简单,您可以使用例如:
AutoForm.getFieldValue('profileInformation.dateOfBirth');
age: {
type: String,
optional: true,
defaultValue : function(){
return AutoForm.getFieldValue('profileInformation.dateOfBirth');
}
}